Index: sources/gui/qml/compounds/InstructionView.qml =================================================================== diff -u -r41ba9331e6a540df0c8eced0c4d3b8684afa9afa -ra9557e00ee75086bc640cb28ab4899ea4affa9ff --- sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision 41ba9331e6a540df0c8eced0c4d3b8684afa9afa) +++ sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision a9557e00ee75086bc640cb28ab4899ea4affa9ff) @@ -30,13 +30,14 @@ color : Colors.offWhite radius : Variables.alarmDialogRadius + clip : true Text { id: _title anchors { left : parent.left - leftMargin : Variables.defaultMargin * 3 + leftMargin : Variables.defaultMargin * 3 // with current resolution this makes the screen look nice top : parent.top - topMargin : Variables.defaultMargin * 2 + topMargin : Variables.defaultMargin * 2 // with current resolution this makes the screen look nice } text : _root.title color : Colors.backgroundMainMenu @@ -86,7 +87,7 @@ Text { id: _message anchors { left : _stepRect.right - leftMargin : Variables.defaultMargin * 2 + leftMargin : Variables.defaultMargin * 2 // with current resolution this makes the screen look nice right : parent.right verticalCenter : parent.verticalCenter } @@ -108,14 +109,8 @@ } Image { id: _image - anchors { - right : parent.right - rightMargin : Variables.defaultMargin * 2 - } + anchors.right : parent.right source : _root.stepImages.length && _root.stepImages[_root.currentIndex] ? _root.stepImages[_root.currentIndex] : "" - width : parent.width / 3 - height : parent.height - fillMode : Image.PreserveAspectFit } } }