Index: sources/gui/qml/main.qml =================================================================== diff -u -rbae1ae230d8b41f90b1fcd34b9bccdfa87bf3cd9 -r83f808d0f503ea847c27c1fbc65c2b95d2e5d6b0 --- sources/gui/qml/main.qml (.../main.qml) (revision bae1ae230d8b41f90b1fcd34b9bccdfa87bf3cd9) +++ sources/gui/qml/main.qml (.../main.qml) (revision 83f808d0f503ea847c27c1fbc65c2b95d2e5d6b0) @@ -341,6 +341,23 @@ function onStandbyWaitDisinfectChanged ( vValue ) { _mainMenu.isTreatment() } } + Connections { target: vTreatmentVitals + function onDidTimeout() { + // interval set to OFF so just record without vitals + if ( ! vTreatmentVitals.interval ) { + vTreatmentTrends.onNoVitalsRecord() + } + // interval is set and BP cuff is available + else if ( vTreatmentVitals.enableBPCuff ) { + vTreatmentTrends.onIntervalRequestVitals() + } + } + } + + Connections { target: vTreatmentAdjustmentVitals + function onDidTimeout() { vTreatmentTrends.onIntervalTimeoutVitals() } + } + // 9 - Others HeaderBar { id: _headerBar anchors.top: parent.top