From 64bcfb7ebc86ad576e89356564bbe5526a21f25c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20B=C3=BCchi?= Date: Mon, 3 Nov 2025 02:02:19 +0100 Subject: [PATCH] taskswitcher: fix double tap navpanel task switch being inconsistent --- kwin/mobiletaskswitcher/package/contents/ui/TaskSwitcher.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kwin/mobiletaskswitcher/package/contents/ui/TaskSwitcher.qml b/kwin/mobiletaskswitcher/package/contents/ui/TaskSwitcher.qml index 16895254..13232d96 100644 --- a/kwin/mobiletaskswitcher/package/contents/ui/TaskSwitcher.qml +++ b/kwin/mobiletaskswitcher/package/contents/ui/TaskSwitcher.qml @@ -485,7 +485,7 @@ FocusScope { // navigation panel MobileShell.NavigationPanel { id: navigationPanel - z: root.taskSwitcherHelpers.taskDrawerOpened && !root.taskSwitcherHelpers.currentlyBeingClosed ? 1 : 0 + z: !root.taskSwitcherHelpers.currentlyBeingClosed ? 1 : 0 visible: ShellSettings.Settings.navigationPanelEnabled backgroundColor: Qt.rgba(0, 0, 0, 0.1) foregroundColorGroup: Kirigami.Theme.Complementary