Index: sources/gui/qml/AlarmItem.qml =================================================================== diff -u -r18567640c36d4bd3d2fa37ac929987cec7476309 -rfdddcd8b25b5acc99f8c044c998af0e95752063c --- sources/gui/qml/AlarmItem.qml (.../AlarmItem.qml) (revision 18567640c36d4bd3d2fa37ac929987cec7476309) +++ sources/gui/qml/AlarmItem.qml (.../AlarmItem.qml) (revision fdddcd8b25b5acc99f8c044c998af0e95752063c) @@ -47,6 +47,8 @@ readonly property alias alarm_AlarmID : vAlarmStatus.alarm_AlarmID readonly property alias hasAlarm : vAlarmStatus.hasAlarm + signal goToPost() + function alarmMinimize() { // The has alarm check has been added here to let other components call this function, // without worrying about the alarmDialog popoing up without an alarm present. @@ -98,7 +100,9 @@ function onDidAlarmEmpty ( ) { alarmHide () } } - NotificationDialog { id : _notificationDialog } + NotificationDialog { id : _notificationDialog + onGoToPost: _root.goToPost() + } Connections { target: vAlarmStatus function onAlarm_PriorityChanged ( vValue ) {