Flush any spooled XDND messages

The last position change message would never reach REAPER under when
using certain plugins because we forgot the flush.
This commit is contained in:
Robbert van der Helm
2021-07-11 21:35:39 +02:00
parent 4c7ffd5a3a
commit 4d74963e0a
+4
View File
@@ -282,6 +282,8 @@ void WineXdndProxy::run_xdnd_loop() {
next_position_message_position.reset();
last_window_accepted_status = false;
waiting_for_status_message = false;
xcb_flush(x11_connection.get());
}
};
@@ -292,6 +294,8 @@ void WineXdndProxy::run_xdnd_loop() {
xcb_xdnd_copy_action);
next_position_message_position.reset();
waiting_for_status_message = true;
xcb_flush(x11_connection.get());
}
};