From ba7cc9f83f76fcda2ce7b1bca7e140cad47bde10 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 25 Feb 2011 17:10:27 +0100 Subject: [PATCH] updated for version 7.3.134 Problem: Drag-n-drop doesn't work in KDE Dolphin. Solution: Add GDK_ACTION_MOVE flag. (Florian Degner) --- src/gui_gtk_x11.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c index 5c6e831a7..0454afb7b 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 42be40af5..163bf295b 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 134, /**/ 133, /**/ -- 2.50.1