From 295912fbb3de5f519917a5d9c3d335ec2f24bb34 Mon Sep 17 00:00:00 2001 From: Filippo Scognamiglio Date: Mon, 5 Jan 2015 22:08:06 +0100 Subject: [PATCH] Reduce minimum quality and allower finer tuning of performance settings. --- app/qml/SettingsPerformanceTab.qml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/qml/SettingsPerformanceTab.qml b/app/qml/SettingsPerformanceTab.qml index 567fca3..7d938a8 100644 --- a/app/qml/SettingsPerformanceTab.qml +++ b/app/qml/SettingsPerformanceTab.qml @@ -55,10 +55,10 @@ Tab{ Layout.fillWidth: true id: txtslider onValueChanged: if (enabled) appSettings.windowScaling = value; - stepSize: 0.10 + stepSize: 0.05 enabled: false Component.onCompleted: { - minimumValue = 0.3 //Without this value gets set to 0.5 + minimumValue = 0.25 //Without this value gets set to 0.5 value = appSettings.windowScaling; enabled = true; } @@ -80,10 +80,10 @@ Tab{ Layout.fillWidth: true id: bloomSlider onValueChanged: if (enabled) appSettings.bloomQuality = value; - stepSize: 0.10 + stepSize: 0.05 enabled: false Component.onCompleted: { - minimumValue = 0.3 + minimumValue = 0.25 value = appSettings.bloomQuality; enabled = true; } @@ -105,10 +105,10 @@ Tab{ Layout.fillWidth: true id: burnInSlider onValueChanged: if (enabled) appSettings.burnInQuality = value; - stepSize: 0.10 + stepSize: 0.05 enabled: false Component.onCompleted: { - minimumValue = 0.3 + minimumValue = 0.25 value = appSettings.burnInQuality; enabled = true; }