From bc5d2560738a0a5f534b6ab16128d39232c939d8 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Sun, 25 Jan 2026 04:44:39 -0500 Subject: [PATCH] fix: more strictly close bar popouts --- modules/ui/Interactions.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/ui/Interactions.qml b/modules/ui/Interactions.qml index f3d601e..8c0a24d 100644 --- a/modules/ui/Interactions.qml +++ b/modules/ui/Interactions.qml @@ -62,6 +62,10 @@ CustomMouseArea { if (y < Config.bar.height && !popoutsSuppressed && !popouts.persistent) { bar.checkPopout(x); } + // Hide bar popouts (if user moves mouse along edge) + if (y > popouts.nonAnimHeight + Config.bar.height) { + popouts.hasCurrent = false; + } // Show osd on hover const showOsd = inRightPanel(panels.osd, x, y);