Index: sources/gui/qml/dialogs/diagnostics/DiagnosticsSwipe.qml =================================================================== diff -u -r69c86c57349b7d4a6ba47a801ba27b1c470fade5 -r84f52edfe2c00f2c2ea2a497c421b6d11c0ccce9 --- sources/gui/qml/dialogs/diagnostics/DiagnosticsSwipe.qml (.../DiagnosticsSwipe.qml) (revision 69c86c57349b7d4a6ba47a801ba27b1c470fade5) +++ sources/gui/qml/dialogs/diagnostics/DiagnosticsSwipe.qml (.../DiagnosticsSwipe.qml) (revision 84f52edfe2c00f2c2ea2a497c421b6d11c0ccce9) @@ -24,7 +24,7 @@ * \brief the pre treatment prime stack screen */ Item { id: _root - SwipeView { id: view + SwipeView { id: _view currentIndex: 0 anchors.fill: parent @@ -45,13 +45,13 @@ } width : _root.width - index : view.currentIndex + index : _view.currentIndex color : Colors.transparent titlePixelSize : 30 model : _model onItemPressed: function (vIndex) { - view.currentIndex = vIndex + _view.currentIndex = vIndex } ListModel { id: _model