summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-02-25 17:10:27 +0100
committerBram Moolenaar <Bram@vim.org>2011-02-25 17:10:27 +0100
commitba7cc9f83f76fcda2ce7b1bca7e140cad47bde10 (patch)
tree6bbc75ae61b2866f7c11d5093c5370d8caf25ac3 /src
parent4cf35c2fa4c0e33110440e7503a0e25ab8060016 (diff)
updated for version 7.3.134v7.3.134
Problem: Drag-n-drop doesn't work in KDE Dolphin. Solution: Add GDK_ACTION_MOVE flag. (Florian Degner)
Diffstat (limited to 'src')
-rw-r--r--src/gui_gtk_x11.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c
index 5c6e831a75..0454afb7b7 100644
--- a/src/gui_gtk_x11.c
+++ b/src/gui_gtk_x11.c
@@ -3094,7 +3094,7 @@ gui_gtk_set_dnd_targets(void)
gtk_drag_dest_set(gui.drawarea,
GTK_DEST_DEFAULT_ALL,
targets, n_targets,
- GDK_ACTION_COPY);
+ GDK_ACTION_COPY | GDK_ACTION_MOVE);
}
/*
diff --git a/src/version.c b/src/version.c
index 42be40af59..163bf295b9 100644
--- a/src/version.c
+++ b/src/version.c
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 134,
+/**/
133,
/**/
132,