Index: sources/gui/qml/dialogs/NotificationDialog.qml =================================================================== diff -u -r1d43ff790e6a3fb03d371bb5bde9c2d432d299b6 -r3d0a160e4e8c0348c688ed5efe4d86dc66121e6b --- sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 1d43ff790e6a3fb03d371bb5bde9c2d432d299b6) +++ sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 3d0a160e4e8c0348c688ed5efe4d86dc66121e6b) @@ -60,6 +60,7 @@ height : Variables.mainMenuHeight width : _root.width radius : _root.radius + clip : true // the mute button expands so we need to clip the outside unwanted area. Image { id: _icon @@ -94,6 +95,7 @@ } MuteButton { id: _muteButton + objectName: "_alarmMuteButton" anchors { verticalCenter : _titleBar.verticalCenter left : _titleBar.left @@ -133,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") @@ -141,6 +144,7 @@ } TouchRect { id : _rinsebackTouchRect + objectName: "_alarmRinseback" visible : rinsebackVisible button.onPressed: rinsebackClicked() text.text : qsTr("RINSEBACK") @@ -149,13 +153,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")