Index: sources/gui/qml/dialogs/NotificationDialog.qml =================================================================== diff -u -r07e0c7bd409782cab96a4ae761ee3f819bdb8639 -r5215e145a0f26a20c99e3f10af6ac8a9c3b67383 --- sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 07e0c7bd409782cab96a4ae761ee3f819bdb8639) +++ sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 5215e145a0f26a20c99e3f10af6ac8a9c3b67383) @@ -95,6 +95,7 @@ } MuteButton { id: _muteButton + objectName: "_alarmMuteButton" anchors { verticalCenter : _titleBar.verticalCenter left : _titleBar.left @@ -134,6 +135,7 @@ // 3 - No button at all for the situations that the alarm can't be resolved by user. // :: OK button and the other 3 buttons (Resume,Rinseback,End) should never come together TouchRect { id : _resumeTouchRect + objectName: "_alarmResume" visible : resumeVisible button.onPressed: resumeClicked() text.text : qsTr("RESUME") @@ -142,6 +144,7 @@ } TouchRect { id : _rinsebackTouchRect + objectName: "_alarmRinseback" visible : rinsebackVisible button.onPressed: rinsebackClicked() text.text : qsTr("RINSEBACK") @@ -150,13 +153,15 @@ } TouchRect { id : _endTouchRect + objectName: "_alarmEnd" visible : endVisible button.onPressed: endClicked() text.text : qsTr("END TREATMENT") width : _buttonGroup.buttonsWidth borderColor : Colors.white } TouchRect { id : _okTouchRect + objectName: "_alarmOK" visible : okVisible button.onPressed: okClicked() text.text : qsTr("OK")