]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/dnd.cpp
Minor header cleaning.
[wxWidgets.git] / src / gtk1 / dnd.cpp
index 4da84ef7b09962d9c1f00d2a619f96a2374d4d9d..d24aa7a952c6e3a47136c207991d027fac8897cc 100644 (file)
     #include "wx/intl.h"
     #include "wx/log.h"
     #include "wx/app.h"
     #include "wx/intl.h"
     #include "wx/log.h"
     #include "wx/app.h"
+    #include "wx/utils.h"
+    #include "wx/window.h"
+    #include "wx/gdicmn.h"
 #endif
 
 #endif
 
-#include "wx/window.h"
-#include "wx/gdicmn.h"
-#include "wx/utils.h"
-
 #include "wx/gtk1/private.h"
 
 #include <gdk/gdkprivate.h>
 #include "wx/gtk1/private.h"
 
 #include <gdk/gdkprivate.h>
@@ -931,6 +930,14 @@ wxDragResult wxDropSource::DoDragDrop(int flags)
 
     UnregisterWindow();
 
 
     UnregisterWindow();
 
+    // this shouldn't be needed but somehow, sometimes, without this the cursor
+    // stays grabbed even when the DND operation ends and the application
+    // becomes unresponsive and has to be killed resulting in loss of all
+    // unsaved data, so while this fix is ugly it's still better than
+    // alternative
+    if ( gdk_pointer_is_grabbed() )
+        gdk_pointer_ungrab(GDK_CURRENT_TIME);
+
     return m_retValue;
 }
 
     return m_retValue;
 }