Index: leahi.qrc
===================================================================
diff -u -rea51c0546c7061d225e7b9d8b754554c65f0d1b1 -r11d077c26f747989731b7547c1f15a3b52001e5a
--- leahi.qrc (.../leahi.qrc) (revision ea51c0546c7061d225e7b9d8b754554c65f0d1b1)
+++ leahi.qrc (.../leahi.qrc) (revision 11d077c26f747989731b7547c1f15a3b52001e5a)
@@ -52,7 +52,6 @@
resources/images/Close.png
resources/images/bell-on.png
resources/images/bell-off.png
- resources/images/Back.png
resources/images/PauseDarkBlue.png
resources/images/PauseLightBlue.png
resources/images/PauseGray.png
Index: sources/gui/qml/components/BackButton.qml
===================================================================
diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -r11d077c26f747989731b7547c1f15a3b52001e5a
--- sources/gui/qml/components/BackButton.qml (.../BackButton.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1)
+++ sources/gui/qml/components/BackButton.qml (.../BackButton.qml) (revision 11d077c26f747989731b7547c1f15a3b52001e5a)
@@ -25,35 +25,22 @@
*/
TouchRect { id : _root
readonly property int margin: (_root.height - Variables.iconsDiameter) / 2
- width : 120
+ width : 150
height : 50
+ radius : 10
+
anchors {
top : parent.top
left : parent.left
margins : Variables.headerButtonsMargin
}
- Image { id: _image
- anchors {
- left : _root.left
- leftMargin : _root.margin
- verticalCenter: parent.verticalCenter
- }
-
- width : Variables.iconsDiameter
- height: Variables.iconsDiameter
- source: "qrc:/images/iBack"
- }
-
text {
- text: qsTr("BACK")
- font.bold : true
- font.pixelSize: Fonts.fontPixelBack
- anchors {
- centerIn: null // disable the parent anchor
- verticalCenter: _root.verticalCenter
- left: _image.right
- leftMargin: _root.margin
+ anchors.centerIn : parent
+ font {
+ pixelSize : Fonts.fontPixelBack
+ weight : Font.Bold
}
+ text: qsTr("Back")
}
}