Index: leahi.qrc
===================================================================
diff -u -rb04fa0fce565a52305f2153f2cb6c5858453ab15 -r5d0e5c390a377b85066d1f6925291275ffc46e63
--- leahi.qrc (.../leahi.qrc) (revision b04fa0fce565a52305f2153f2cb6c5858453ab15)
+++ leahi.qrc (.../leahi.qrc) (revision 5d0e5c390a377b85066d1f6925291275ffc46e63)
@@ -57,7 +57,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 -r5d0e5c390a377b85066d1f6925291275ffc46e63
--- sources/gui/qml/components/BackButton.qml (.../BackButton.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1)
+++ sources/gui/qml/components/BackButton.qml (.../BackButton.qml) (revision 5d0e5c390a377b85066d1f6925291275ffc46e63)
@@ -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")
}
}