Reduce minimum scaling value and fix aliasing issues with small fonts and rasterization.

This commit is contained in:
Filippo Scognamiglio
2015-01-20 00:57:23 +01:00
parent 32f7923652
commit 2bc88768b6
4 changed files with 30 additions and 8 deletions

View File

@@ -66,8 +66,8 @@ Tab{
stepSize: 0.05
enabled: false // Another trick to fix initial bad behavior.
Component.onCompleted: {
minimumValue = 0.5;
maximumValue = 2.5;
minimumValue = appSettings.minimumFontScaling;
maximumValue = appSettings.maximumFontScaling;
value = appSettings.fontScaling;
enabled = true;
}