Don't try to reposition the input method client

It already is opinionated about its position.
This commit is contained in:
Aleix Pol 2020-08-06 17:23:03 +02:00 committed by Aleix Pol Gonzalez
parent 2565e03eb3
commit 3bb829d677

View file

@ -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
}