From af513d320660fac0c55921a211e3c566f448e59b Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 20 Jul 2026 16:37:33 -0700 Subject: [PATCH] Preserve power panel keyboard selection --- shell/plugins/panels/power/Panel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/plugins/panels/power/Panel.qml b/shell/plugins/panels/power/Panel.qml index 2aad1ac3..0caf7786 100644 --- a/shell/plugins/panels/power/Panel.qml +++ b/shell/plugins/panels/power/Panel.qml @@ -149,7 +149,7 @@ Panel { profiles = parsed.profiles activeProfile = parsed.activeProfile profileIndex = parsed.profileIndex - if (opened && activeProfile !== "") { + if (opened && !cursorActive) { var idx = profiles.indexOf(activeProfile) if (idx >= 0) profileIndex = idx }