Index: sources/gui/qml/compounds/InstructionView.qml =================================================================== diff -u -r821bf955d0ba7e028bccfee7c04ca77cf80a0bd4 -r4b7b2f3079f81ff442fcbbde5d5e5465f5937417 --- sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision 821bf955d0ba7e028bccfee7c04ca77cf80a0bd4) +++ sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision 4b7b2f3079f81ff442fcbbde5d5e5465f5937417) @@ -63,6 +63,9 @@ bottomMargin: _root.frameVGap } radius : _root.innerRadius + // DEBUG : This helps getting the final size of the available room for the instruction images. + // onWidthChanged : console.debug( " ----- ", "_innerFrame.width :" , width ) + // onHeightChanged : console.debug( " ----- ", "_innerFrame.height:" , height) } Item { id: _containerSwipeView @@ -91,7 +94,7 @@ font.pixelSize: Fonts.fontPixelDialogText } Image { id: _image - source: _root.stepImages.length ? "file:" + _root.location + _root.stepImages[_swipeview.currentIndex] : "" + source: _root.stepImages.length && _root.stepImages[_swipeview.currentIndex] ? "file:" + _root.location + _root.stepImages[_swipeview.currentIndex] : "" width : _innerFrame.width height : _innerFrame.height anchors.centerIn: parent @@ -106,6 +109,7 @@ } StepIndicator { id: _indicator + visible : _root.stepNames.length currentComplete : true hideLabels : true stepNames : _root.stepNames