cursors: Set more reasonable bit-count limits

This commit is contained in:
Mike
2016-03-06 01:25:18 +00:00
parent 5b03a23ba1
commit 515db69950

View File

@@ -74,6 +74,8 @@ SpectrogramControls::SpectrogramControls(const QString & title, QWidget * parent
layout->addRow(new QLabel(tr("Enable cursors:")), cursorsCheckBox);
cursorBitsSpinBox = new QSpinBox();
cursorBitsSpinBox->setMinimum(1);
cursorBitsSpinBox->setMaximum(9999);
layout->addRow(new QLabel(tr("Bits:")), cursorBitsSpinBox);
timeSelectionFreqLabel = new QLabel();