Index: sources/gui/qml/pages/treatment/sections/TreatmentFluid.qml =================================================================== diff -u -r0e528e5f706308c7b0e8f22a4d9dbb5b5715db7c -r474e5b3680d8acbf0ac79062124352d0b3d43b65 --- sources/gui/qml/pages/treatment/sections/TreatmentFluid.qml (.../TreatmentFluid.qml) (revision 0e528e5f706308c7b0e8f22a4d9dbb5b5715db7c) +++ sources/gui/qml/pages/treatment/sections/TreatmentFluid.qml (.../TreatmentFluid.qml) (revision 474e5b3680d8acbf0ac79062124352d0b3d43b65) @@ -45,10 +45,12 @@ title: qsTr("FLUID MANAGEMENT") TouchRect { id: _startFluidButton + enabled : _root.isTouchable y : 45 width : 340 height : 55 text.text: buttonText + textColor: enabled ? Colors.textButton : Colors.textDisableButton text.font { weight: Font.DemiBold pixelSize : 20 @@ -57,7 +59,8 @@ animated: true duration: 100 onClicked: { - _root.clicked() + if (enabled) + _root.clicked() } }