From 8bd8a7dad7340f376b7016f658281f97eca74de4 Mon Sep 17 00:00:00 2001 From: zach Date: Sun, 12 Apr 2026 17:51:39 +0200 Subject: [PATCH] fix sidebar rounding --- Modules/Notifications/Sidebar/Background.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/Notifications/Sidebar/Background.qml b/Modules/Notifications/Sidebar/Background.qml index bf15baf..f31c43d 100644 --- a/Modules/Notifications/Sidebar/Background.qml +++ b/Modules/Notifications/Sidebar/Background.qml @@ -1,7 +1,7 @@ -import qs.Components -import qs.Config import QtQuick import QtQuick.Shapes +import qs.Components +import qs.Config ShapePath { id: root @@ -10,7 +10,7 @@ ShapePath { readonly property real notifsRoundingX: panels.notifications.height > 0 && notifsWidthDiff < rounding * 2 ? notifsWidthDiff / 2 : rounding readonly property real notifsWidthDiff: panels.notifications.width - wrapper.width required property var panels - readonly property real rounding: 8 + readonly property real rounding: Config.barConfig.rounding readonly property real utilsRoundingX: utilsWidthDiff < rounding * 2 ? utilsWidthDiff / 2 : rounding readonly property real utilsWidthDiff: panels.utilities.width - wrapper.width required property Wrapper wrapper