Skip to content

Commit e3bac92

Browse files
authored
Merge pull request miek#211 from argilo/more-cursor-symbols
Allow up to 99,999 symbols
2 parents 684158d + 4b96bcd commit e3bac92

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)