From 28324930c302c0f14f6bfc8edd7aef7d9055ec80 Mon Sep 17 00:00:00 2001 From: Mike Trahearn Date: Wed, 15 Jan 2025 13:23:01 +1000 Subject: [PATCH] Remove debug text in StatusBarNotificationIndicator --- components/StatusBarNotificationIndicator.qml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/components/StatusBarNotificationIndicator.qml b/components/StatusBarNotificationIndicator.qml index eb0ce6d9a..d302597be 100644 --- a/components/StatusBarNotificationIndicator.qml +++ b/components/StatusBarNotificationIndicator.qml @@ -23,13 +23,4 @@ Rectangle { duration: Theme.animation_page_fade_duration } } - - Text { - anchors.top: parent.bottom - text: Global.notifications.unsilencedModel.highestPriorityType === VenusOS.Notification_Alarm - ? "Theme.color_critical" - : Global.notifications.unsilencedModel.highestPriorityType === VenusOS.Notification_Warning - ? "Theme.color_warning" - : "Theme.color_ok" - } }