taskswitcher: fix double tap navpanel task switch being inconsistent

This commit is contained in:
Luis Büchi 2025-11-03 02:02:19 +01:00
parent 9840d05cdf
commit 64bcfb7ebc

View file

@ -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