From 9de0c215babdc1c09279fc021fbf442be31a04ee Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 8 Sep 2023 00:59:56 -0500 Subject: [PATCH] Don't allow custom frame rates below 10 FPS --- app/gui/SettingsView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/gui/SettingsView.qml b/app/gui/SettingsView.qml index 61adcdfa..48957801 100644 --- a/app/gui/SettingsView.qml +++ b/app/gui/SettingsView.qml @@ -478,7 +478,7 @@ Flickable { maximumLength: 4 inputMethodHints: Qt.ImhDigitsOnly placeholderText: fpsListModel.get(fpsComboBox.currentIndex).video_fps - validator: IntValidator{bottom:1; top:9999} + validator: IntValidator{bottom:10; top:9999} focus: true onTextChanged: {