Skip to content

Commit 4b96bcd

Browse files
committed
Allow up to 99,999 symbols
1 parent 98b998f commit 4b96bcd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/spectrogramcontrols.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ SpectrogramControls::SpectrogramControls(const QString & title, QWidget * parent
7878

7979
cursorSymbolsSpinBox = new QSpinBox();
8080
cursorSymbolsSpinBox->setMinimum(1);
81-
cursorSymbolsSpinBox->setMaximum(9999);
81+
cursorSymbolsSpinBox->setMaximum(99999);
8282
layout->addRow(new QLabel(tr("Symbols:")), cursorSymbolsSpinBox);
8383

8484
rateLabel = new QLabel();

0 commit comments

Comments
 (0)