From 377778596acf90451d1bd19f0c03b5f1c0467958 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 15 Mar 2026 22:36:40 +1100 Subject: fix: close other popouts when hover activewindow --- modules/bar/components/ActiveWindow.qml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'modules') diff --git a/modules/bar/components/ActiveWindow.qml b/modules/bar/components/ActiveWindow.qml index 62bab0f..414c9c5 100644 --- a/modules/bar/components/ActiveWindow.qml +++ b/modules/bar/components/ActiveWindow.qml @@ -44,6 +44,12 @@ Item { sourceComponent: MouseArea { cursorShape: Qt.PointingHandCursor + hoverEnabled: true + onPositionChanged: { + const popouts = root.bar.popouts; + if (popouts.hasCurrent && popouts.currentName !== "activewindow") + popouts.hasCurrent = false; + } onClicked: { const popouts = root.bar.popouts; if (popouts.hasCurrent) { -- cgit v1.2.3-freya