Index: sources/gui/qml/dialogs/NotificationDialog.qml =================================================================== diff -u -r8f83b92860a33498ea7856e63afef0a10ee11923 -r78cf0c96836f3fd612e5871a9f48dbb048bd7e99 --- sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 8f83b92860a33498ea7856e63afef0a10ee11923) +++ sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 78cf0c96836f3fd612e5871a9f48dbb048bd7e99) @@ -70,8 +70,7 @@ radius : _root.radius clip : true // the mute button expands so we need to clip the outside unwanted area. - Image { - id: _icon + Image { id: _icon source: "qrc:/images/iAlarm" anchors.horizontalCenter: _title.horizontalCenter anchors.verticalCenter: _title.verticalCenter @@ -114,6 +113,12 @@ } onClicked: _root.muteClicked() } + // TODO: disable this later. this is only for diagnostic purpose when alarm dialog covers the entire screen. + MouseArea { + anchors.fill: _icon + onClicked : if ( _minimizeArea.enabled ) _root.minimizeClicked() + onDoubleClicked : _sdItem.doubleClicked() + } } Text { id: _desc Index: sources/gui/qml/main.qml =================================================================== diff -u -r61f16c988a159401c92730b4cbfca5085c77222f -r78cf0c96836f3fd612e5871a9f48dbb048bd7e99 --- sources/gui/qml/main.qml (.../main.qml) (revision 61f16c988a159401c92730b4cbfca5085c77222f) +++ sources/gui/qml/main.qml (.../main.qml) (revision 78cf0c96836f3fd612e5871a9f48dbb048bd7e99) @@ -248,8 +248,8 @@ } PowerItem { id: _powerItem } - SDItem { id: _sdItem; - property bool request: true + SDItem { id: _sdItem + // TODO: disable this later. this is only for diagnostic purpose. onDoubleClicked : { _diagnosticsDialog.open() }