actioncenter: Ensure window gets raised over status bar

Potential fix for #358, haven't yet verified on device
This commit is contained in:
Devin Lin 2024-07-28 15:55:58 -04:00
parent eb9501edb1
commit 20efd102f3

View file

@ -32,6 +32,12 @@ NanoShell.FullScreenOverlay {
color: "transparent"
onVisibleChanged: {
if (visible) {
window.raise();
}
}
onActiveChanged: {
if (!active) {
drawer.close();