mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 06:18:52 +02:00
Merge pull request #15734 from zfox23/SUI/recommendedGraphics
Implement BUGZ-633: Change 'Graphics Preset'
This commit is contained in:
commit
9932b1da57
1 changed files with 4 additions and 4 deletions
|
@ -101,7 +101,7 @@ Flickable {
|
||||||
|
|
||||||
HifiStylesUit.GraphikRegular {
|
HifiStylesUit.GraphikRegular {
|
||||||
id: performanceTitle
|
id: performanceTitle
|
||||||
text: "Graphics Preset"
|
text: "Graphics Settings"
|
||||||
Layout.maximumWidth: parent.width
|
Layout.maximumWidth: parent.width
|
||||||
height: paintedHeight
|
height: paintedHeight
|
||||||
size: 22
|
size: 22
|
||||||
|
@ -115,7 +115,7 @@ Flickable {
|
||||||
|
|
||||||
SimplifiedControls.RadioButton {
|
SimplifiedControls.RadioButton {
|
||||||
id: performanceLow
|
id: performanceLow
|
||||||
text: "Low"
|
text: "Low Quality" + (PlatformInfo.getTierProfiled() === PerformanceEnums.LOW ? " (Recommended)" : "")
|
||||||
checked: Performance.getPerformancePreset() === PerformanceEnums.LOW
|
checked: Performance.getPerformancePreset() === PerformanceEnums.LOW
|
||||||
onClicked: {
|
onClicked: {
|
||||||
Performance.setPerformancePreset(PerformanceEnums.LOW);
|
Performance.setPerformancePreset(PerformanceEnums.LOW);
|
||||||
|
@ -124,7 +124,7 @@ Flickable {
|
||||||
|
|
||||||
SimplifiedControls.RadioButton {
|
SimplifiedControls.RadioButton {
|
||||||
id: performanceMedium
|
id: performanceMedium
|
||||||
text: "Medium"
|
text: "Medium Quality" + (PlatformInfo.getTierProfiled() === PerformanceEnums.MID ? " (Recommended)" : "")
|
||||||
checked: Performance.getPerformancePreset() === PerformanceEnums.MID
|
checked: Performance.getPerformancePreset() === PerformanceEnums.MID
|
||||||
onClicked: {
|
onClicked: {
|
||||||
Performance.setPerformancePreset(PerformanceEnums.MID);
|
Performance.setPerformancePreset(PerformanceEnums.MID);
|
||||||
|
@ -133,7 +133,7 @@ Flickable {
|
||||||
|
|
||||||
SimplifiedControls.RadioButton {
|
SimplifiedControls.RadioButton {
|
||||||
id: performanceHigh
|
id: performanceHigh
|
||||||
text: "High"
|
text: "High Quality" + (PlatformInfo.getTierProfiled() === PerformanceEnums.HIGH ? " (Recommended)" : "")
|
||||||
checked: Performance.getPerformancePreset() === PerformanceEnums.HIGH
|
checked: Performance.getPerformancePreset() === PerformanceEnums.HIGH
|
||||||
onClicked: {
|
onClicked: {
|
||||||
Performance.setPerformancePreset(PerformanceEnums.HIGH);
|
Performance.setPerformancePreset(PerformanceEnums.HIGH);
|
||||||
|
|
Loading…
Reference in a new issue