[effects] Exclude OSD windows from desktop grid
Summary: BUG: 376987 FIXED-IN: 5.10.4 Test Plan: Compiles Reviewers: #kwin, #plasma Subscribers: plasma-devel, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D6835
This commit is contained in:
parent
aaef5fc769
commit
cf62ac8039
1 changed files with 1 additions and 1 deletions
|
@ -1379,7 +1379,7 @@ bool DesktopGridEffect::isActive() const
|
|||
|
||||
bool DesktopGridEffect::isRelevantWithPresentWindows(EffectWindow *w) const
|
||||
{
|
||||
return !(w->isDesktop() || w->isDock() || w->isSkipSwitcher()) &&
|
||||
return !(w->isDesktop() || w->isDock() || w->isSkipSwitcher() || w->isOnScreenDisplay()) &&
|
||||
w->isCurrentTab() && w->isOnCurrentActivity();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue