From 4d3e09f4a014e9e8b3d693dd1c16353b0f7e3394 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 19 Feb 2022 10:47:25 -0600 Subject: [PATCH] Raise minimum custom resolution to 256x256 --- app/gui/SettingsView.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/gui/SettingsView.qml b/app/gui/SettingsView.qml index 7b6be0b1..c6dbea18 100644 --- a/app/gui/SettingsView.qml +++ b/app/gui/SettingsView.qml @@ -345,7 +345,7 @@ Flickable { maximumLength: 5 inputMethodHints: Qt.ImhDigitsOnly placeholderText: resolutionListModel.get(resolutionComboBox.currentIndex).video_width - validator: IntValidator{bottom:128; top:8192} + validator: IntValidator{bottom:256; top:8192} focus: true onTextChanged: { @@ -374,7 +374,7 @@ Flickable { maximumLength: 5 inputMethodHints: Qt.ImhDigitsOnly placeholderText: resolutionListModel.get(resolutionComboBox.currentIndex).video_height - validator: IntValidator{bottom:128; top:8192} + validator: IntValidator{bottom:256; top:8192} onTextChanged: { // standardButton() was added in Qt 5.10, so we must check for it first