Index: sources/gui/qml/compounds/InstructionView.qml =================================================================== diff -u -rd66feb12d37023f6f67672ff4acdb5abebdbff15 -r39a514158384c0ad4bfcfb90bafbaa4ca8dc5a26 --- sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision d66feb12d37023f6f67672ff4acdb5abebdbff15) +++ sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision 39a514158384c0ad4bfcfb90bafbaa4ca8dc5a26) @@ -32,7 +32,7 @@ radius : Variables.alarmDialogRadius clip : true - onVisibleChanged: if (visible) { _autoStepController.isPlaying = false } + onVisibleChanged: if (visible) { _autoStepController.isPlaying = true } Text { id: _title anchors { @@ -129,15 +129,23 @@ } } - InteractiveImage { id: _image - anchors { - bottom : parent.bottom - right : parent.right + Image { id: _image + anchors{ + right : parent.right + bottom : parent.bottom } - width : parent.width / 2 - height : _root.height - source : _root.stepImages.length && _root.stepImages[_root.currentIndex] ? _root.stepImages[_root.currentIndex] : "" } + // TODO TEST ON NEW DISPLAY AND ADD BACK IN +// 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] : "" +// } } }