Index: sources/gui/qml/AlarmItem.qml =================================================================== diff -u -ra7c580f0998ee781c47314384f677249cea4c4b4 -r27cb1be1e85e93cab858216f35c5d4d36a6ade5f --- sources/gui/qml/AlarmItem.qml (.../AlarmItem.qml) (revision a7c580f0998ee781c47314384f677249cea4c4b4) +++ sources/gui/qml/AlarmItem.qml (.../AlarmItem.qml) (revision 27cb1be1e85e93cab858216f35c5d4d36a6ade5f) @@ -161,6 +161,11 @@ Connections { target: vAlarmStatus function onAlarm_PriorityChanged ( vValue ) { + // when alarmstatus 0 is sent from HD to clear/hide the AlarmDialog it comes with 0 fro priority + // priority 0 has no clear definistion therefore UI wil set coloring to the default system theme, blue. + // that blue color is confusing users, and we skip this coloring. + if ( ! vValue ) return + [ _alarmDialog.titleBarBackground, _alarmDialog.titleBarForeground,