commit | ba7cc9f83f76fcda2ce7b1bca7e140cad47bde10 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri Feb 25 17:10:27 2011 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Fri Feb 25 17:10:27 2011 +0100 |
tree | 6bbc75ae61b2866f7c11d5093c5370d8caf25ac3 | |
parent | 4cf35c2fa4c0e33110440e7503a0e25ab8060016 [diff] [blame] |
updated for version 7.3.134 Problem: Drag-n-drop doesn't work in KDE Dolphin. Solution: Add GDK_ACTION_MOVE flag. (Florian Degner)
diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c index 5c6e831..0454afb 100644 --- a/src/gui_gtk_x11.c +++ b/src/gui_gtk_x11.c
@@ -3094,7 +3094,7 @@ gtk_drag_dest_set(gui.drawarea, GTK_DEST_DEFAULT_ALL, targets, n_targets, - GDK_ACTION_COPY); + GDK_ACTION_COPY | GDK_ACTION_MOVE); } /*