mirror of https://gitee.com/openkylin/kwin.git
[Fix]: #135863 打开侧边栏网络/蓝牙/侧边栏等非应用类窗口再点击多任务视图再退出,窗口仍然保留在桌面
This commit is contained in:
parent
55f2fe8e8c
commit
c27aef9124
|
@ -882,7 +882,9 @@ QByteArray EffectsHandlerImpl::readRootProperty(long atom, long type, int format
|
||||||
|
|
||||||
void EffectsHandlerImpl::activateWindow(EffectWindow* c)
|
void EffectsHandlerImpl::activateWindow(EffectWindow* c)
|
||||||
{
|
{
|
||||||
if (auto cl = qobject_cast<AbstractClient *>(static_cast<EffectWindowImpl *>(c)->window())) {
|
if (!c) {
|
||||||
|
Workspace::self()->activateClient(nullptr);
|
||||||
|
} else if (auto cl = qobject_cast<AbstractClient *>(static_cast<EffectWindowImpl *>(c)->window())) {
|
||||||
Workspace::self()->activateClient(cl, true);
|
Workspace::self()->activateClient(cl, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue