From ff99ac76cc332ac4b7b5faab9fdb13ca81015780 Mon Sep 17 00:00:00 2001 From: kossLAN Date: Sun, 8 Jun 2025 21:23:57 -0400 Subject: [PATCH] bar/systray: hide popup on interact --- bar/systray/SysTray.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bar/systray/SysTray.qml b/bar/systray/SysTray.qml index 22fd367..2886cb8 100644 --- a/bar/systray/SysTray.qml +++ b/bar/systray/SysTray.qml @@ -60,7 +60,11 @@ RowLayout { id: sysTrayContent Layout.fillWidth: true Layout.fillHeight: true - onInteracted: menuOpener.menu = null + + onInteracted: { + root.popup.hide(); + menuOpener.menu = null; + } } } }