From 3271262e8dc24c20b1b64f8aa8fd16bfa75d5a93 Mon Sep 17 00:00:00 2001 From: rope Date: Tue, 26 May 2026 14:59:04 +0100 Subject: [PATCH] quickshell: widen popup to fit concave corners MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Popup was only fullWidth+4, leaving 2px per side — the 8px corners were clipped. Now fullWidth+16 gives 8px per side. Co-Authored-By: Claude Opus 4.6 --- settings/hyprland.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 42445e6..06486ac 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -831,7 +831,7 @@ in PopupWindow { id: calPopup anchor.window: bar - anchor.rect.x: bar.width / 2 - (fullWidth + 4) / 2 + anchor.rect.x: bar.width / 2 - (fullWidth + 16) / 2 anchor.rect.y: bar.height anchor.edges: Edges.Top | Edges.Left anchor.gravity: Edges.Bottom | Edges.Right @@ -844,7 +844,7 @@ in property real fullWidth: calCol.width + 32 property real fullHeight: calCol.height + 24 - implicitWidth: fullWidth + 4 + implicitWidth: fullWidth + 16 implicitHeight: fullHeight + 4 onVisibleChanged: {