mirror of https://github.com/GNOME/gimp.git
reverse order of DND dests so "text/uri-list" is preferred again after my
2004-09-16 Michael Natterer <mitch@gimp.org> * app/widgets/gimpdnd.c (gimp_dnd_uri_list_dest_add): reverse order of DND dests so "text/uri-list" is preferred again after my DND change of 2004-06-29. Fixes dropping of multiple files.
This commit is contained in:
parent
0514ee4ba2
commit
f338d93835
|
@ -1,3 +1,9 @@
|
|||
2004-09-16 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/widgets/gimpdnd.c (gimp_dnd_uri_list_dest_add): reverse
|
||||
order of DND dests so "text/uri-list" is preferred again after my
|
||||
DND change of 2004-06-29. Fixes dropping of multiple files.
|
||||
|
||||
2004-09-16 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/widgets/gimpcomponenteditor.[ch]: set the viewable
|
||||
|
|
|
@ -992,13 +992,13 @@ gimp_dnd_uri_list_dest_add (GtkWidget *widget,
|
|||
GTK_DEST_DEFAULT_ALL, NULL, 0,
|
||||
GDK_ACTION_COPY | GDK_ACTION_MOVE);
|
||||
|
||||
gimp_dnd_data_dest_add (GIMP_DND_TYPE_NETSCAPE_URL, widget,
|
||||
gimp_dnd_data_dest_add (GIMP_DND_TYPE_URI_LIST, widget,
|
||||
G_CALLBACK (set_uri_list_func),
|
||||
data);
|
||||
gimp_dnd_data_dest_add (GIMP_DND_TYPE_TEXT_PLAIN, widget,
|
||||
G_CALLBACK (set_uri_list_func),
|
||||
data);
|
||||
gimp_dnd_data_dest_add (GIMP_DND_TYPE_URI_LIST, widget,
|
||||
gimp_dnd_data_dest_add (GIMP_DND_TYPE_NETSCAPE_URL, widget,
|
||||
G_CALLBACK (set_uri_list_func),
|
||||
data);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue