Merge pull request #737 from keeshii/fix/wizard_refresh_rate

Corrected refresh rate values in wizard.
This commit is contained in:
ksuprynowicz 2023-11-23 19:04:08 +01:00 committed by GitHub
commit fadfdab52a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -318,22 +318,22 @@ Rectangle {
text:
"<font size=\"4\" color=\"#ff9900\"><b>Not Smooth (20 Hz)</b></font>\n" +
"<font color=\"white\">Conserve Power</font>"
onClicked: wizard.refreshRateProfile = 1
checked: wizard.refreshRateProfile === 1
onClicked: wizard.refreshRateProfile = 0
checked: wizard.refreshRateProfile === 0
}
RadioButton {
text:
"<font size=\"4\" color=\"#ffff00\"><b>Smooth (30 Hz)</b></font>\n" +
"<font color=\"white\">Use Average Resources</font>"
onClicked: wizard.refreshRateProfile = 2
checked: wizard.refreshRateProfile === 2
onClicked: wizard.refreshRateProfile = 1
checked: wizard.refreshRateProfile === 1
}
RadioButton {
text:
"<font size=\"4\" color=\"#00ba1c\"><b>Very Smooth (60 Hz)</b></font>\n" +
"<font color=\"white\">Use Maximum Resources - </font><font color=\"#00ba1c\"><i>Recommended</i></font>"
onClicked: wizard.refreshRateProfile = 3
checked: wizard.refreshRateProfile === 3
onClicked: wizard.refreshRateProfile = 2
checked: wizard.refreshRateProfile === 2
}
}
}