Skip to content

Commit

Permalink
🔧 Do not apply effects to windows which are on all desktops and have …
Browse files Browse the repository at this point in the history
…no decoration
  • Loading branch information
Schneegans committed Oct 25, 2023
1 parent 33dd2c0 commit eac0686
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions kwin/main.js.in
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ class %EFFECT_CLASS% {
return window.hasDecoration;
}

if (!window.hasDecoration && window.onAllDesktops) {
return false
}

if (blacklist.indexOf(window.windowClass) != -1) {
return false;
}
Expand Down

0 comments on commit eac0686

Please sign in to comment.