summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKimmo Ollila <kimmo.ollila@theqtcompany.com>2016-01-05 09:04:54 +0200
committerKimmo Ollila <kimmo.ollila@theqtcompany.com>2016-01-07 07:05:54 +0000
commit1ac35b128cf0197d0a7c8c54727e86051366a2bc (patch)
tree188573537f820e2375cb345492cbd66d27bbc39b
parent365e9f68eda02ac81a1058fd54567e228c5fc0a7 (diff)
Changed Text renderType to native to improve Pathview performance.
Task-Id QTRD-3800 Change-Id: I2d8f50339cd7bfecf685526f9d3a50d0918c2b8a Reviewed-by: Teemu Holappa <teemu.holappa@theqtcompany.com> Reviewed-by: Katja Marttila <katja.marttila@theqtcompany.com>
-rw-r--r--qml/LaunchScreen.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/qml/LaunchScreen.qml b/qml/LaunchScreen.qml
index 69eb930..b79d2ee 100644
--- a/qml/LaunchScreen.qml
+++ b/qml/LaunchScreen.qml
@@ -49,10 +49,8 @@ Item {
highlightMoveDuration: 700
-
delegate: ApplicationIcon {
id: iconRoot;
-
width: list.cellWidth
height: list.cellHeight
function select() {
@@ -85,6 +83,8 @@ Item {
color: "black"
font.bold: true
wrapMode: Text.WordWrap
+ textFormat: Text.PlainText
+ renderType: Text.NativeRendering
}
Text {
@@ -96,5 +96,7 @@ Item {
anchors.top: nameLabel.bottom
anchors.bottom: parent.bottom
wrapMode: Text.WordWrap
+ textFormat: Text.PlainText
+ renderType: Text.NativeRendering
}
}