From 9111e4809d865c16b997e9f52c9f6128a959ebdf Mon Sep 17 00:00:00 2001 From: jbwfu <75001777+jbwfu@users.noreply.github.com> Date: Tue, 9 Jun 2026 11:53:43 +0800 Subject: [PATCH] fix(powermenu): close control center on lock and power actions (#2598) --- quickshell/DMSShell.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quickshell/DMSShell.qml b/quickshell/DMSShell.qml index f406f3f8..0a8583e5 100644 --- a/quickshell/DMSShell.qml +++ b/quickshell/DMSShell.qml @@ -1140,6 +1140,7 @@ Item { id: powerMenuModal onPowerActionRequested: (action, title, message) => { + PopoutService.closeControlCenter(); switch (action) { case "logout": SessionService.logout(); @@ -1160,6 +1161,7 @@ Item { } onLockRequested: { + PopoutService.closeControlCenter(); lock.activate(); }