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") } }