Index: sources/gui/qml/dialogs/NotificationDialog.qml =================================================================== diff -u -rcd769413344091cea88a30861b49188c8c147cba -r89e3ca8e108dd4b3315ae7862c631eba43f8fd0f --- sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision cd769413344091cea88a30861b49188c8c147cba) +++ sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 89e3ca8e108dd4b3315ae7862c631eba43f8fd0f) @@ -134,6 +134,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 +143,7 @@ } TouchRect { id : _rinsebackTouchRect + objectName: "_alarmRinseback" visible : rinsebackVisible button.onPressed: rinsebackClicked() text.text : qsTr("RINSEBACK") @@ -150,13 +152,15 @@ } TouchRect { id : _endTouchRect + objectName: "_alarmEnd" visible : endVisible button.onPressed: endClicked() text.text : qsTr("END") width : _buttonGroup.buttonsWidth borderColor : Colors.white } TouchRect { id : _okTouchRect + objectName: "_alarmOK" visible : okVisible button.onPressed: okClicked() text.text : qsTr("OK")