Index: sources/gui/qml/components/BackButton.qml =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -re568c0be76dcf80834f68b30d7291f45172b6f69 --- sources/gui/qml/components/BackButton.qml (.../BackButton.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/gui/qml/components/BackButton.qml (.../BackButton.qml) (revision e568c0be76dcf80834f68b30d7291f45172b6f69) @@ -25,8 +25,8 @@ */ TouchRect { id : _root readonly property int margin: (_root.height - Variables.iconsDiameter) / 2 - width : 120 - height : 50 + width : Variables.backButtonWidth + height : Variables.backButtonHeight anchors { top : parent.top left : parent.left @@ -53,7 +53,7 @@ centerIn: null // disable the parent anchor verticalCenter: _root.verticalCenter left: _image.right - leftMargin: _root.margin + leftMargin: 15 } } }