mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-15 13:52:28 +00:00
Raise minimum custom resolution to 256x256
This commit is contained in:
parent
9add6b3696
commit
4d3e09f4a0
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue