bar/systray: hide popup on interact

This commit is contained in:
kossLAN 2025-06-08 21:23:57 -04:00
parent f041f1d10f
commit ff99ac76cc
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8

View file

@ -60,7 +60,11 @@ RowLayout {
id: sysTrayContent
Layout.fillWidth: true
Layout.fillHeight: true
onInteracted: menuOpener.menu = null
onInteracted: {
root.popup.hide();
menuOpener.menu = null;
}
}
}
}