Index: sources/gui/qml/components/GridSelection.qml =================================================================== diff -u -reae47411318bcf48addb424f3c2fedcd4d7b92f5 -rdfd4fe3e511308ddd0e6ad9f93cc1d980d22e933 --- sources/gui/qml/components/GridSelection.qml (.../GridSelection.qml) (revision eae47411318bcf48addb424f3c2fedcd4d7b92f5) +++ sources/gui/qml/components/GridSelection.qml (.../GridSelection.qml) (revision dfd4fe3e511308ddd0e6ad9f93cc1d980d22e933) @@ -51,7 +51,7 @@ function clear() { _root.curIndex = _GuiView.dryDemoMode ? 0 : -1 - _root.active = _GuiView.dryDemoMode ? true : false + _root.active = _GuiView.dryDemoMode } function reset(vIndex) { Index: sources/gui/qml/dialogs/DryDemoDialog.qml =================================================================== diff -u -r40c81d8364424610feeffeb5ac30e990105c8c00 -rdfd4fe3e511308ddd0e6ad9f93cc1d980d22e933 --- sources/gui/qml/dialogs/DryDemoDialog.qml (.../DryDemoDialog.qml) (revision 40c81d8364424610feeffeb5ac30e990105c8c00) +++ sources/gui/qml/dialogs/DryDemoDialog.qml (.../DryDemoDialog.qml) (revision dfd4fe3e511308ddd0e6ad9f93cc1d980d22e933) @@ -32,11 +32,11 @@ */ ModalDialog { id: _root - width : 400 //Variables.applicationWidth - height : 700 //Variables.applicationHeight - 60 + width : 400 + height : 700 //anchors.centerIn: undefined // TODO figure out the anchor right - readonly property int rowCount : 12 + readonly property int rowCount : 12 // Number of buttons that are mapped to commands readonly property int colCount : itemsText.length > rowCount ? Math.ceil(itemsText.length / rowCount) : 1 property var itemsText : [ @@ -63,7 +63,6 @@ } function itemClicked(vIndex) { - //console.log("Index", vIndex) // TODO for debugging purposes only vConfirm.sendDryDemoCommand(vIndex) } Index: sources/gui/qml/pages/pretreatment/connection/PreTreatmentUltrafiltration.qml =================================================================== diff -u -r40c81d8364424610feeffeb5ac30e990105c8c00 -rdfd4fe3e511308ddd0e6ad9f93cc1d980d22e933 --- sources/gui/qml/pages/pretreatment/connection/PreTreatmentUltrafiltration.qml (.../PreTreatmentUltrafiltration.qml) (revision 40c81d8364424610feeffeb5ac30e990105c8c00) +++ sources/gui/qml/pages/pretreatment/connection/PreTreatmentUltrafiltration.qml (.../PreTreatmentUltrafiltration.qml) (revision dfd4fe3e511308ddd0e6ad9f93cc1d980d22e933) @@ -41,7 +41,7 @@ function clear() { _volumeSlider.reset ( _volumeSlider.defaultValue ) - _volumeSlider.isActive = _GuiView.dryDemoMode //false + _volumeSlider.isActive = _GuiView.dryDemoMode } function handleMinimum( vValue ) {