From 20efd102f3630daf89d67e73c198d806e0a3c23a Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sun, 28 Jul 2024 15:55:58 -0400 Subject: [PATCH] actioncenter: Ensure window gets raised over status bar Potential fix for #358, haven't yet verified on device --- .../mobileshell/qml/actiondrawer/ActionDrawerWindow.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/mobileshell/qml/actiondrawer/ActionDrawerWindow.qml b/components/mobileshell/qml/actiondrawer/ActionDrawerWindow.qml index a4b2ccc5..8d3eb9eb 100644 --- a/components/mobileshell/qml/actiondrawer/ActionDrawerWindow.qml +++ b/components/mobileshell/qml/actiondrawer/ActionDrawerWindow.qml @@ -32,6 +32,12 @@ NanoShell.FullScreenOverlay { color: "transparent" + onVisibleChanged: { + if (visible) { + window.raise(); + } + } + onActiveChanged: { if (!active) { drawer.close();