x11: Remove window rule geometry mismatch debug message

If the geometry window rule must be forced, the move resize method has
to force it, but similar to size constraints, we assume that the caller
of the move resize function will do the right thing. So, remove the
debug message to be consistent with other client types.
This commit is contained in:
Vlad Zahorodnii 2021-05-28 08:02:46 +03:00
parent f910b0de97
commit eaca921e01

View file

@ -4066,9 +4066,6 @@ void X11Client::moveResizeInternal(const QRect &rect, MoveResizeMode mode)
m_clientGeometry = frameRectToClientRect(frameGeometry);
}
const QRect bufferGeometry = frameRectToBufferRect(frameGeometry);
if (!areGeometryUpdatesBlocked() && frameGeometry != rules()->checkGeometry(frameGeometry)) {
qCDebug(KWIN_CORE) << "forced geometry fail:" << frameGeometry << ":" << rules()->checkGeometry(frameGeometry);
}
m_frameGeometry = frameGeometry;
if (m_bufferGeometry == bufferGeometry && pendingMoveResizeMode() == MoveResizeMode::None) {
return;