[Fix]: #135863 打开侧边栏网络/蓝牙/侧边栏等非应用类窗口再点击多任务视图再退出,窗口仍然保留在桌面

This commit is contained in:
wang teng 2023-07-06 18:16:38 +08:00
parent 55f2fe8e8c
commit c27aef9124
1 changed files with 3 additions and 1 deletions

View File

@ -882,7 +882,9 @@ QByteArray EffectsHandlerImpl::readRootProperty(long atom, long type, int format
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);
}
}