Index: sources/gui/qml/pages/treatment/TreatmentCreate.qml =================================================================== diff -u -rccb91da4becded9a7ad409b758bba96784d9feba -rdf74454a7a75eb63ac577739c1fd0f179e479f44 --- sources/gui/qml/pages/treatment/TreatmentCreate.qml (.../TreatmentCreate.qml) (revision ccb91da4becded9a7ad409b758bba96784d9feba) +++ sources/gui/qml/pages/treatment/TreatmentCreate.qml (.../TreatmentCreate.qml) (revision df74454a7a75eb63ac577739c1fd0f179e479f44) @@ -21,6 +21,7 @@ // Qml imports import "qrc:/globals" import "qrc:/components" +import "qrc:/components/pretreatment" /*! * \brief ManagerHome is the screen @@ -45,7 +46,7 @@ } Flickable { id: _flickable - objectName: "TreatmentCreateFlickable" + objectName: "_treatmentCreateFlickable" anchors.top: _topMenuBar.bottom anchors.left: parent.left anchors.bottom: parent.bottom @@ -412,10 +413,12 @@ onPressed: { setInteractive(false) vTreatmentCreate.bloodPressureMeasureInterval = value + vVitals.doUpdateBPMeasureInterval(value) } onReleased: { vTreatmentCreate.bloodPressureMeasureInterval = value - setInteractive(true) + vVitals.doUpdateBPMeasureInterval(value) + _flickable.setInteractive(true) } }