Commit 29b65804 authored by Aleksi Suomalainen's avatar Aleksi Suomalainen

[bugfix] Replaced Text elements with Label element. Fixed NEMO#708.

parent 805df3a6
......@@ -43,6 +43,7 @@
import QtQuick 2.1
import QtQuick.Controls.Nemo 1.0
Item {
id: root
......@@ -58,10 +59,8 @@ Item {
visible: mouse.pressed
}
Text {
Label {
id: textitem
color: "white"
font.pixelSize: 32
text: modelData
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
......
......@@ -45,12 +45,11 @@ Item {
}
}
Text {
Label {
font.pixelSize: 42
Behavior on x { NumberAnimation { easing.type: Easing.OutCubic } }
x: backButton.x + backButton.width + 20
anchors.verticalCenter: parent.verticalCenter
color: "white"
text: parent.title
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment