Mercurial > hg > svgui
changeset 369:63971199663a
* 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
author | Chris Cannam |
---|---|
date | Tue, 12 Feb 2008 15:41:01 +0000 |
parents | eedb7f341ec5 |
children | 8ebc2ce2a210 |
files | widgets/LabelCounterInputDialog.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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();