We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e43e03 commit 14d488fCopy full SHA for 14d488f
gui/qt/visualizerwidget.cpp
@@ -117,7 +117,7 @@ void VisualizerWidget::showConfig() {
117
QCheckBox *gridChk = new QCheckBox(tr("Grid"));
118
QPushButton *submitBtn = new QPushButton(tr("Submit"));
119
120
- fpsSpin->setRange(0, 120);
+ fpsSpin->setRange(1, 1000);
121
fpsSpin->setValue(m_fps);
122
123
scaleSpin->setRange(0, 5000);
@@ -268,7 +268,7 @@ void VisualizerWidget::stringToView() {
268
if (fps_reg.match(str).hasMatch()) {
269
str.chop(3);
270
m_fps = str.toInt();
271
- if (m_fps < 1 || m_fps > 120) { m_fps = 30; }
+ if (m_fps < 1 || m_fps > 1000) { m_fps = 30; }
272
}
273
274
0 commit comments