]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
DragNDrop plugin change for VMware Tools on Windows; not applicable to
authorOliver Kurth <okurth@vmware.com>
Wed, 15 Nov 2017 21:32:55 +0000 (13:32 -0800)
committerOliver Kurth <okurth@vmware.com>
Wed, 15 Nov 2017 21:32:55 +0000 (13:32 -0800)
open-vm-tools.

open-vm-tools/services/plugins/dndcp/dndGuest/guestDnDDest.cc

index 8d234d4cd905471886cebe1b2ea19dfc511a50f8..aadf062722a140ce2c5183c8f9cad8307c1b5cfe 100644 (file)
@@ -237,7 +237,14 @@ GuestDnDDest::OnRpcDrop(uint32 sessionId,
 void
 GuestDnDDest::OnRpcCancel(uint32 sessionId)
 {
+   /*
+    * For Windows, the detection window will hide when the drop
+    * event occurs.
+    * Please see bug 1750683.
+    */
+#if !defined(_WIN32)
    mMgr->DelayHideDetWnd();
+#endif // _WIN32
    mMgr->RemoveUngrabTimeout();
    mMgr->destCancelChanged.emit();
    mMgr->SetState(GUEST_DND_READY);