Index: sources/gui/qml/pages/disinfect/DisinfectStack.qml =================================================================== diff -u -re28183bddebf7383c1bd113e7b8ef4ea11f494fb -rf93fd4a2a09a2c6d4db43196b9005f324ae7fa82 --- sources/gui/qml/pages/disinfect/DisinfectStack.qml (.../DisinfectStack.qml) (revision e28183bddebf7383c1bd113e7b8ef4ea11f494fb) +++ sources/gui/qml/pages/disinfect/DisinfectStack.qml (.../DisinfectStack.qml) (revision f93fd4a2a09a2c6d4db43196b9005f324ae7fa82) @@ -41,15 +41,15 @@ readonly property string heatTitle : qsTr("Heat Disinfect") readonly property string chemicalTitle : qsTr("Chemical Disinfect") - function doSettingsDisinfect( vFlush, vHeat, vIsChemical ) { + function doSettingsDisinfect() { // since we do't know the order or timing of the FW message // prefered to set the screens by UI. // If HDOpMode says/has the same state nothing changes, but at least UI is not showing empty screen. _mainMenu.hidden = true stackView.clear() - if ( vFlush ) { page( _disinfectFlush ); return } - if ( vHeat ) { page( _disinfectHeat ); return } - if ( vIsChemical ) { page( _disinfectChemicalInstruction ); return } + if ( vDisinfectAdjustDisinfect.flush ) { page( _disinfectFlush ); return } + if ( vDisinfectAdjustDisinfect.heat ) { page( _disinfectHeat ); return } + if ( vDisinfectAdjustDisinfect.chemical ) { page( _disinfectChemicalInstruction ); return } } DisinfectBase { id : _disinfect