Index: sources/gui/qml/compounds/InstructionView.qml =================================================================== diff -u -r99a56ec30f1ca4f401e744766bde4f6fac291752 -r94fc1cd187816ecbf176df26f9dc5601bf379f13 --- sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision 99a56ec30f1ca4f401e744766bde4f6fac291752) +++ sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision 94fc1cd187816ecbf176df26f9dc5601bf379f13) @@ -82,10 +82,10 @@ model: _root.stepNames Loader { id: _content anchors.bottom: parent.bottom - active: SwipeView.isCurrentItem || SwipeView.isNextItem || SwipeView.isPreviousItem + active: SwipeView.isPreviousItem || SwipeView.isCurrentItem || SwipeView.isNextItem sourceComponent: Item { Text { id: _message - text : _root.stepNames.length ? _root.stepNames[_swipeview.currentIndex] : "" + text : _root.stepNames.length ? _root.stepNames[index] : "" color : Colors.textMain width : parent.width height : _root.frameVGap @@ -94,7 +94,7 @@ font.pixelSize: Fonts.fontPixelDialogText } Image { id: _image - source: _root.stepImages.length && _root.stepImages[_swipeview.currentIndex] ? "file:" + _root.location + _root.stepImages[_swipeview.currentIndex] : "" + source: _root.stepImages.length && _root.stepImages[index] ? "file:" + _root.location + _root.stepImages[index] : "" width : _innerFrame.width height : _innerFrame.height anchors.centerIn: parent