From 333281f6eead8393656727dd0f320d1303954209 Mon Sep 17 00:00:00 2001 From: Amaro Lopes Date: Tue, 14 Oct 2025 12:35:24 -0300 Subject: [PATCH] Change default bar color to transparent, change wrapping issue where it can't worwrap correctly, so it just wraps --- Bar.qml | 2 +- Common/NotificationWrapper.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Bar.qml b/Bar.qml index c9d6dd9..001fc1b 100644 --- a/Bar.qml +++ b/Bar.qml @@ -13,7 +13,7 @@ PanelWindow { screen: modelData implicitHeight: Theme.barSize - color: Qt.rgba(0.68, 0.75, 0.88, 0) + color: "transparent" anchors { top: true diff --git a/Common/NotificationWrapper.qml b/Common/NotificationWrapper.qml index f5433ff..d8d3c85 100644 --- a/Common/NotificationWrapper.qml +++ b/Common/NotificationWrapper.qml @@ -122,7 +122,7 @@ BackgroundRectangle { StyledText { id: summaryText anchors.fill: parent - wrapMode: Text.WordWrap + wrapMode: Text.Wrap text: root.notification ? root.notification.summary : "" } } @@ -143,7 +143,7 @@ BackgroundRectangle { StyledText { id: bodyText anchors.fill: parent - wrapMode: Text.WordWrap + wrapMode: Text.Wrap text: root.notification ? root.notification.body : "" } }