Don't try to reposition the input method client
It already is opinionated about its position.
This commit is contained in:
parent
2565e03eb3
commit
3bb829d677
1 changed files with 5 additions and 2 deletions
|
@ -2190,8 +2190,11 @@ void Workspace::updateClientArea(bool force)
|
|||
|
||||
for (auto it = m_allClients.constBegin();
|
||||
it != m_allClients.constEnd();
|
||||
++it)
|
||||
(*it)->checkWorkspacePosition();
|
||||
++it) {
|
||||
if (!(*it)->isInputMethod()) {
|
||||
(*it)->checkWorkspacePosition();
|
||||
}
|
||||
}
|
||||
|
||||
oldrestrictedmovearea.clear(); // reset, no longer valid or needed
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue