From 1dcc42ef19319bf65b62b755d3e6d44c202380d1 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Tue, 12 Aug 2025 14:30:54 +0200 Subject: [PATCH] Fix Notification scaling --- Modules/Notification/Notification.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Modules/Notification/Notification.qml b/Modules/Notification/Notification.qml index 324387a..1a67b03 100644 --- a/Modules/Notification/Notification.qml +++ b/Modules/Notification/Notification.qml @@ -143,7 +143,7 @@ PanelWindow { NText { text: (model.appName || model.desktopEntry) || "Unknown App" color: Colors.accentSecondary - font.pointSize: Style.fontSizeSmall + font.pointSize: Style.fontSizeSmall * scaling } Rectangle { width: 6 * scaling @@ -158,13 +158,13 @@ PanelWindow { NText { text: notificationService.formatTimestamp(model.timestamp) color: Colors.textSecondary - font.pointSize: Style.fontSizeSmall + font.pointSize: Style.fontSizeSmall * scaling } } NText { text: model.summary || "No summary" - font.pointSize: Style.fontSizeLarge + font.pointSize: Style.fontSizeLarge * scaling font.weight: Style.fontWeightBold color: Colors.textPrimary wrapMode: Text.Wrap @@ -175,7 +175,7 @@ PanelWindow { NText { text: model.body || "" - font.pointSize: Style.fontSizeSmall + font.pointSize: Style.fontSizeSmall * scaling color: Colors.textSecondary wrapMode: Text.Wrap width: 300 * scaling