summaryrefslogtreecommitdiffstats
path: root/components/SpinBox.qml
diff options
context:
space:
mode:
authorEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com>2012-07-17 14:18:54 +0200
committerEskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com>2012-08-08 16:39:29 +0200
commit063eb0bbaa37964e86c102f0d6d2aaff2fb4bce9 (patch)
treedd4e3178cb47bd1706279a74da6d20335a3fcfcb /components/SpinBox.qml
parentaf0fe556ead3f0321e63bdfd436f4429f65f403f (diff)
Use the renderType property to get native textwip/qt5-nativetext
The property was recently introduced and allows enabling the system font rasterizer. Change-Id: I2aee4b88e743c169eac5d5f06ff185ec347511e7 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com>
Diffstat (limited to 'components/SpinBox.qml')
-rw-r--r--components/SpinBox.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/components/SpinBox.qml b/components/SpinBox.qml
index 8c07f596d..0007450cd 100644
--- a/components/SpinBox.qml
+++ b/components/SpinBox.qml
@@ -201,6 +201,7 @@ FocusScope {
selectByMouse: true
selectionColor: syspal.highlight
selectedTextColor: syspal.highlightedText
+ renderType: Desktop.nativeTextRendering ? Text.NativeRendering : Text.QtRendering
// validator: DoubleValidator { bottom: minimumValue; top: maximumValue; }
onAccepted: {setValue(input.text)}
@@ -212,6 +213,8 @@ FocusScope {
anchors.rightMargin: 4
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
+ renderType: Desktop.nativeTextRendering ? Text.NativeRendering : Text.QtRendering
+
}
}