From 68d1ee8f080b6585fede8caf471b547206d1f762 Mon Sep 17 00:00:00 2001 From: Zhiyi Zhang Date: Mon, 7 Nov 2022 21:09:09 +0800 Subject: [PATCH] x11window: Don't send a final ConfigureNotify event in leaveInteractiveMoveResize() With 74eb0d8, ConfigureNotify events are always sent when moving windows. It's no longer necessary to send a final ConfigureNotify event after a window is moved. --- src/x11window.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/x11window.cpp b/src/x11window.cpp index 1ae1e7912f..6f576ca66c 100644 --- a/src/x11window.cpp +++ b/src/x11window.cpp @@ -4664,9 +4664,6 @@ bool X11Window::doStartInteractiveMoveResize() void X11Window::leaveInteractiveMoveResize() { - if (!isInteractiveResize()) { - sendSyntheticConfigureNotify(); // tell the client about it's new final position - } if (kwinApp()->operationMode() == Application::OperationModeX11) { if (move_resize_has_keyboard_grab) { ungrabXKeyboard();