From 8d94abb257f1780ca59f2cee119924be48efd508 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 11 Jul 2021 16:28:57 +0200 Subject: [PATCH] Only send the drop once Oops. --- src/wine-host/xdnd-proxy.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wine-host/xdnd-proxy.cpp b/src/wine-host/xdnd-proxy.cpp index 6dd3918a..a80d560c 100644 --- a/src/wine-host/xdnd-proxy.cpp +++ b/src/wine-host/xdnd-proxy.cpp @@ -504,6 +504,9 @@ void WineXdndProxy::run_xdnd_loop() { } xcb_flush(x11_connection.get()); + + // We obviously don't want to spam the other client + waiting_for_status_message = true; } }