mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-07 13:12:39 +02:00
Corrected refresh rate values in wizard.
This commit is contained in:
parent
e8143a8e40
commit
eba935a55f
1 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue