diff --git a/Modules/Notification/Notification.qml b/Modules/Notification/Notification.qml index 68d0906a..6875dd29 100644 --- a/Modules/Notification/Notification.qml +++ b/Modules/Notification/Notification.qml @@ -259,6 +259,7 @@ Variants { font.pointSize: Style.fontSizeL * scaling font.weight: Style.fontWeightMedium color: Color.mOnSurface + textFormat: Text.PlainText wrapMode: Text.WrapAtWordBoundaryOrAnywhere Layout.fillWidth: true maximumLineCount: 3 @@ -269,6 +270,7 @@ Variants { text: model.body || "" font.pointSize: Style.fontSizeM * scaling color: Color.mOnSurface + textFormat: Text.PlainText wrapMode: Text.WrapAtWordBoundaryOrAnywhere Layout.fillWidth: true maximumLineCount: 5 diff --git a/Modules/Notification/NotificationHistoryPanel.qml b/Modules/Notification/NotificationHistoryPanel.qml index fd5be5f8..6e52bb20 100644 --- a/Modules/Notification/NotificationHistoryPanel.qml +++ b/Modules/Notification/NotificationHistoryPanel.qml @@ -169,6 +169,7 @@ NPanel { font.pointSize: Style.fontSizeM * scaling font.weight: Font.Medium color: Color.mPrimary + textFormat: Text.PlainText wrapMode: Text.Wrap Layout.fillWidth: true maximumLineCount: 2 @@ -179,6 +180,7 @@ NPanel { text: (body || "").substring(0, 150) font.pointSize: Style.fontSizeXS * scaling color: Color.mOnSurface + textFormat: Text.PlainText wrapMode: Text.Wrap Layout.fillWidth: true maximumLineCount: 3 diff --git a/Services/BrightnessService.qml b/Services/BrightnessService.qml index c13221a3..711d8f24 100644 --- a/Services/BrightnessService.qml +++ b/Services/BrightnessService.qml @@ -199,7 +199,6 @@ Singleton { readonly property real stepSize: Settings.data.brightness.brightnessStep / 100.0 - // Timer for debouncing rapid changes readonly property Timer timer: Timer { interval: 100