Index: sources/gui/qml/compounds/InstructionView.qml =================================================================== diff -u -r4f87126626b76aa04ddcf2ae92e04e118cdcbe01 -rbd01334f257c35b96b7b232beacbcd7fae60c852 --- sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision 4f87126626b76aa04ddcf2ae92e04e118cdcbe01) +++ sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision bd01334f257c35b96b7b232beacbcd7fae60c852) @@ -30,8 +30,9 @@ property var stepNames : [] property var stepImages : [] + property alias currentStepIndex: _swipeview.currentIndex + readonly property bool isEmpty : stepNames.length == 0 && stepImages.length == 0 - readonly property int currentStepIndex: _swipeview.currentIndex readonly property bool firstStep : isEmpty || _swipeview.currentIndex == 0 readonly property bool lastStep : isEmpty || _swipeview.currentIndex == _swipeview.count - 1