Index: sources/gui/qml/pages/treatment/TreatmentCreate.qml =================================================================== diff -u -r14c541d2b780b0a244bc84860aa565cf8dd7fe4b -r66e87ea403ec12a273553284919684282d87bc6a --- sources/gui/qml/pages/treatment/TreatmentCreate.qml (.../TreatmentCreate.qml) (revision 14c541d2b780b0a244bc84860aa565cf8dd7fe4b) +++ sources/gui/qml/pages/treatment/TreatmentCreate.qml (.../TreatmentCreate.qml) (revision 66e87ea403ec12a273553284919684282d87bc6a) @@ -21,6 +21,7 @@ // Qml imports import "qrc:/globals" import "qrc:/components" +import "qrc:/components/pretreatment" /*! * \brief ManagerHome is the screen @@ -42,7 +43,7 @@ } Flickable { id: _flickable - objectName: "TreatmentCreateFlickable" + objectName: "_treatmentCreateFlickable" anchors.top: _topMenuBar.bottom anchors.left: parent.left anchors.bottom: parent.bottom @@ -375,9 +376,11 @@ onPressed: { _flickable.setInteractive(false) vTreatmentCreate.bloodPressureMeasureInterval = value + vVitals.doUpdateBPMeasureInterval(value) } onReleased: { vTreatmentCreate.bloodPressureMeasureInterval = value + vVitals.doUpdateBPMeasureInterval(value) _flickable.setInteractive(true) } }