Index: sources/gui/qml/components/NotificationBarSmall.qml =================================================================== diff -u -rae028f2ce4768d53d280f119ab2a11ac516fd3d2 -rc2f474ff07c98aa350c445a2474976a3cf985f40 --- sources/gui/qml/components/NotificationBarSmall.qml (.../NotificationBarSmall.qml) (revision ae028f2ce4768d53d280f119ab2a11ac516fd3d2) +++ sources/gui/qml/components/NotificationBarSmall.qml (.../NotificationBarSmall.qml) (revision c2f474ff07c98aa350c445a2474976a3cf985f40) @@ -86,15 +86,24 @@ onLevelChanged: { switch (level) { + case GuiActions.ALARM_PRIORITY_HIGH: +/* Qt6 Port: replace above line with the following: case guiActions.ALARM_PRIORITY_HIGH: +*/ _root.color = Colors.textNotificationHighBg; _text.color = Colors.textNotificationHighFg; break; + case GuiActions.ALARM_PRIORITY_MEDIUM: +/* Qt6 Port: replace above line with the following: case guiActions.ALARM_PRIORITY_MEDIUM: +*/ _root.color = Colors.textNotificationMedBg; _text.color = Colors.textNotificationMedFg; break; + case GuiActions.ALARM_PRIORITY_LOW: +/* Qt6 Port: replace above line with the following: case guiActions.ALARM_PRIORITY_LOW: +*/ _root.color = Colors.textNotificationLowBg; _text.color = Colors.textNotificationLowFg; break;