Index: sources/gui/qml/compounds/InstructionView.qml =================================================================== diff -u -ra8a42037ec8a5b2a5057c8dbb0f6cc079672b7fe -rd66feb12d37023f6f67672ff4acdb5abebdbff15 --- sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision a8a42037ec8a5b2a5057c8dbb0f6cc079672b7fe) +++ sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision d66feb12d37023f6f67672ff4acdb5abebdbff15) @@ -20,6 +20,7 @@ // Qml imports import "qrc:/globals" import "qrc:/components" +import "qrc:/compounds" Rectangle { id: _root property string title : "" @@ -128,9 +129,15 @@ } } - Image { id: _image - anchors.right : parent.right - source : _root.stepImages.length && _root.stepImages[_root.currentIndex] ? _root.stepImages[_root.currentIndex] : "" + InteractiveImage { id: _image + anchors { + bottom : parent.bottom + right : parent.right + } + width : parent.width / 2 + height : _root.height + + source : _root.stepImages.length && _root.stepImages[_root.currentIndex] ? _root.stepImages[_root.currentIndex] : "" } } }