WindowHeapDelegate: If window is set to "skip switcher", skip it from window heap

Without this, windows like xwaylandvideobridge would show up.

BUG: 463542
FIXED-IN: 6.0
wilder/Plasma/6.2
Akseli Lahtinen 2 years ago committed by Nate Graham
parent f661f7bb04
commit b43052af83
  1. 4
      src/plugins/private/qml/WindowHeapDelegate.qml

@ -30,7 +30,9 @@ Item {
readonly property bool presentOnCurrentDesktop: !window.desktops.length || window.desktops.indexOf(KWinComponents.Workspace.currentDesktop) !== -1
readonly property bool initialHidden: window.minimized || !presentOnCurrentDesktop
readonly property bool activeHidden: {
if (windowHeap.showOnly === "activeClass") {
if (window.skipSwitcher) {
return true;
} else if (windowHeap.showOnly === "activeClass") {
if (!KWinComponents.Workspace.activeWindow) {
return true;
} else {

Loading…
Cancel
Save