# HG changeset patch # User Chris Cannam # Date 1202830861 0 # Node ID 63971199663a67748ea5103373f333af91b57d63 # Parent eedb7f341ec5c27425e1d441e2b13ca8da287e1d * Allow entry of numbers smaller than 1 in the Set Counters dialog * Renumber Selected Instants now starts its count at the next counter value -- previously it always started at 1:1 and the values that you had set were only used when tapping * pull Reset Counters up a menu level to make it easier to get to diff -r eedb7f341ec5 -r 63971199663a widgets/LabelCounterInputDialog.cpp --- a/widgets/LabelCounterInputDialog.cpp Mon Feb 11 17:08:59 2008 +0000 +++ b/widgets/LabelCounterInputDialog.cpp Tue Feb 12 15:41:01 2008 +0000 @@ -37,7 +37,7 @@ layout->addWidget(label, 0, 0); QSpinBox *counter = new QSpinBox; - counter->setMinimum(1); + counter->setMinimum(-10); counter->setMaximum(10000); counter->setSingleStep(1); m_origSecondCounter = m_labeller->getSecondLevelCounterValue(); @@ -47,7 +47,7 @@ layout->addWidget(counter, 0, 1); counter = new QSpinBox; - counter->setMinimum(1); + counter->setMinimum(-10); counter->setMaximum(10000); counter->setSingleStep(1); m_origCounter = m_labeller->getCounterValue();