diff options
author | Matthias Clasen <mclasen@redhat.com> | 2017-08-26 22:13:25 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-08-27 08:55:16 -0400 |
commit | 95ae7b7c1e7a0f49893785998fbfa38aa98835f3 (patch) | |
tree | ed1d1ec04e8b7825051aa0e919ee6a84414ee47d /gdk/x11/gdkdnd-x11.c | |
parent | a683629dc7d1c5eacd8692cc691a071916a4e05f (diff) | |
download | gtk+-95ae7b7c1e7a0f49893785998fbfa38aa98835f3.tar.gz |
x11: Fix managed dnd
We need to actually trigger the drop from the gdk side.
Diffstat (limited to 'gdk/x11/gdkdnd-x11.c')
-rw-r--r-- | gdk/x11/gdkdnd-x11.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdk/x11/gdkdnd-x11.c b/gdk/x11/gdkdnd-x11.c index 8acf7be7b5..03812d6b8d 100644 --- a/gdk/x11/gdkdnd-x11.c +++ b/gdk/x11/gdkdnd-x11.c @@ -2855,6 +2855,7 @@ static void gdk_x11_drag_context_drop_performed (GdkDragContext *context, guint32 time_) { + gdk_drag_drop (context, time_); drag_context_ungrab (context); } |