From 182f71a61be27ce6521a22e13eca07c22f331a01 Mon Sep 17 00:00:00 2001 From: Jake Weaver Date: Fri, 15 May 2026 10:13:39 -0400 Subject: [PATCH] Ceil tooltip popup size so right/bottom borders render Text.implicitWidth/Height can be fractional. Passing those values straight to the PopupWindow rounded the Wayland surface down, clipping the 1px right/bottom border of the bubble. --- default/quickshell/omarchy-shell/plugins/bar/Bar.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml index 23a9df35..e5e4a128 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml @@ -929,8 +929,8 @@ Item { visible: root.tooltipShown && root.tooltipTarget !== null && root.tooltipText !== "" color: "transparent" - implicitWidth: tooltipBubble.implicitWidth - implicitHeight: tooltipBubble.implicitHeight + implicitWidth: Math.ceil(tooltipBubble.implicitWidth) + implicitHeight: Math.ceil(tooltipBubble.implicitHeight) anchor { id: tooltipAnchor