Index: sources/gui/qml/components/TouchRect.qml =================================================================== diff -u -rf160ef9c259a75e8d6120ad962cda648e8f7a9b3 -rcdb3ba0b019e5f279ca959b1e32ca0097261f6ef --- sources/gui/qml/components/TouchRect.qml (.../TouchRect.qml) (revision f160ef9c259a75e8d6120ad962cda648e8f7a9b3) +++ sources/gui/qml/components/TouchRect.qml (.../TouchRect.qml) (revision cdb3ba0b019e5f279ca959b1e32ca0097261f6ef) @@ -40,8 +40,8 @@ signal clicked onDurationChanged: { - _colorAnimationOn .duration = duration; - _colorAnimationOff.duration = duration; + _colorAnimationOn .duration = duration + _colorAnimationOff.duration = duration } function animate(vAnimate) { Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml =================================================================== diff -u -rf160ef9c259a75e8d6120ad962cda648e8f7a9b3 -rcdb3ba0b019e5f279ca959b1e32ca0097261f6ef --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml (.../TreatmentAdjustmentBase.qml) (revision f160ef9c259a75e8d6120ad962cda648e8f7a9b3) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentBase.qml (.../TreatmentAdjustmentBase.qml) (revision cdb3ba0b019e5f279ca959b1e32ca0097261f6ef) @@ -39,7 +39,7 @@ signal backClicked() onVisibleChanged: { - notification.text = ""; + notification.text = "" } header: Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml =================================================================== diff -u -rf160ef9c259a75e8d6120ad962cda648e8f7a9b3 -rcdb3ba0b019e5f279ca959b1e32ca0097261f6ef --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml (.../TreatmentAdjustmentFlow.qml) (revision f160ef9c259a75e8d6120ad962cda648e8f7a9b3) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentFlow.qml (.../TreatmentAdjustmentFlow.qml) (revision cdb3ba0b019e5f279ca959b1e32ca0097261f6ef) @@ -55,8 +55,8 @@ // reset the flow values to the values of the adjustment response function resetFlows() { - _bloodFlowSlider.value = vTreatmentAdjustmentFlows. bloodFlow_FlowSetPoint; - _dialysateFlowSlider.value = vTreatmentAdjustmentFlows.dialysateFlow_FlowSetPoint; + _bloodFlowSlider.value = vTreatmentAdjustmentFlows. bloodFlow_FlowSetPoint + _dialysateFlowSlider.value = vTreatmentAdjustmentFlows.dialysateFlow_FlowSetPoint } onAboutToShow: { @@ -71,7 +71,7 @@ accept() } else { resetFlows() - notification.text = vTreatmentAdjustmentFlows.text(); + notification.text = vTreatmentAdjustmentFlows.text() } } }