1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

appdrawer: fix not getting mouse events sometimes

This commit is contained in:
bbedward
2025-11-25 12:25:40 -05:00
parent 4035c9cc5f
commit 80f6eb94aa
2 changed files with 16 additions and 19 deletions

View File

@@ -100,11 +100,15 @@ Item {
return;
closeTimer.stop();
shouldBeVisible = true;
if (useBackgroundWindow)
backgroundWindow.visible = true;
contentWindow.visible = true;
PopoutManager.showPopout(root);
opened();
Qt.callLater(() => {
if (shouldBeVisible) {
if (useBackgroundWindow)
backgroundWindow.visible = true;
contentWindow.visible = true;
PopoutManager.showPopout(root);
opened();
}
});
}
function close() {