Index: sources/gui/qml/pages/settings/SettingsROInput.qml =================================================================== diff -u -r1f9e84f74ead9e10577c8caa204c6eb911e12ab8 -rfb1185f1c17778a9f8b300170d8d635a1532f6b4 --- sources/gui/qml/pages/settings/SettingsROInput.qml (.../SettingsROInput.qml) (revision 1f9e84f74ead9e10577c8caa204c6eb911e12ab8) +++ sources/gui/qml/pages/settings/SettingsROInput.qml (.../SettingsROInput.qml) (revision fb1185f1c17778a9f8b300170d8d635a1532f6b4) @@ -36,19 +36,22 @@ anchors.horizontalCenter : parent.horizontalCenter width : Variables.adjustmentLabelUnitContainerWidth height : Variables.adjustmentLabelUnitContainerHeight - text : qsTr("Pure Water Mode") + text : qsTr("RO Water Mode") contentArea.anchors.leftMargin : width * 0.75 contentItem: BaseSwitch { id: _settingsRoInputSwitch - checked : vDuetRoWaterDG.status + checked : vSettings.roWaterMode +// checked : vDuetRoWaterDG.status // TODO?? onClicked: { - vDuetRoWaterDG.doAdjustment ( _settingsRoInputSwitch.checked ) + vSettings.roWaterMode = _settingsRoInputSwitch.checked +// vDuetRoWaterDG.doAdjustment ( _settingsRoInputSwitch.checked ) } } } } + // TODO Connections { target: vDuetRoWaterDG function onAdjustmentTriggered(vValue) { if ( vDuetRoWaterDG.adjustment_Accepted ) {