mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2025-01-23 08:05:01 +00:00
Don't allow custom frame rates below 10 FPS
This commit is contained in:
parent
56474822f7
commit
9de0c215ba
1 changed files with 1 additions and 1 deletions
|
@ -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: {
|
||||
|
|
Loading…
Reference in a new issue