forked from aniani/vim
updated for version 7.3.134
Problem: Drag-n-drop doesn't work in KDE Dolphin. Solution: Add GDK_ACTION_MOVE flag. (Florian Degner)
This commit is contained in:
parent
4cf35c2fa4
commit
ba7cc9f83f
@ -3094,7 +3094,7 @@ gui_gtk_set_dnd_targets(void)
|
|||||||
gtk_drag_dest_set(gui.drawarea,
|
gtk_drag_dest_set(gui.drawarea,
|
||||||
GTK_DEST_DEFAULT_ALL,
|
GTK_DEST_DEFAULT_ALL,
|
||||||
targets, n_targets,
|
targets, n_targets,
|
||||||
GDK_ACTION_COPY);
|
GDK_ACTION_COPY | GDK_ACTION_MOVE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -714,6 +714,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
134,
|
||||||
/**/
|
/**/
|
||||||
133,
|
133,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user