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);