From d275efae043d3ca32c39d8b45346af4cd99f214d Mon Sep 17 00:00:00 2001 From: quadbyte Date: Thu, 7 Aug 2025 23:40:36 -0400 Subject: [PATCH] Corners: fix scaling --- Bar/Bar.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bar/Bar.qml b/Bar/Bar.qml index be1194f..daad069 100644 --- a/Bar/Bar.qml +++ b/Bar/Bar.qml @@ -175,7 +175,7 @@ Scope { anchors.left: true color: "transparent" screen: modelData - margins.top: 36 + margins.top: 36 * Theme.scale(screen) - 1 WlrLayershell.exclusionMode: ExclusionMode.Ignore WlrLayershell.layer: WlrLayer.Top WlrLayershell.namespace: "swww-daemon" @@ -202,7 +202,7 @@ Scope { anchors.right: true color: "transparent" screen: modelData - margins.top: 36 + margins.top: 36 * Theme.scale(screen) - 1 WlrLayershell.exclusionMode: ExclusionMode.Ignore WlrLayershell.layer: WlrLayer.Top WlrLayershell.namespace: "swww-daemon"