Index: sources/gui/qml/components/BackButton.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -rbd7a83dded2a93884021286e6c4dd05ff9753a9e --- sources/gui/qml/components/BackButton.qml (.../BackButton.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/BackButton.qml (.../BackButton.qml) (revision bd7a83dded2a93884021286e6c4dd05ff9753a9e) @@ -25,35 +25,21 @@ */ 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 + font { + pixelSize : Fonts.fontPixelBack + weight : Font.Bold } + text: qsTr("Back") } }