diff --git a/gnome/ChangeLog b/gnome/ChangeLog index 199c4ce34..f90ca5422 100644 --- a/gnome/ChangeLog +++ b/gnome/ChangeLog @@ -1,5 +1,7 @@ 1999-02-03 Federico Mena Quintero + * gscreen.c (drop_types): Allow dropping URLs on file panels. + * gdnd.c (gdnd_validate_action): Added an "on_desktop" argument; this specifies that the user is dragging over the desktop. Added cases for drags of desktop icons and URLs. diff --git a/gnome/gscreen.c b/gnome/gscreen.c index 8b160fe16..49e57dd7e 100644 --- a/gnome/gscreen.c +++ b/gnome/gscreen.c @@ -65,7 +65,8 @@ static GtkTargetEntry drag_types [] = { }; static GtkTargetEntry drop_types [] = { - { TARGET_URI_LIST_TYPE, 0, TARGET_URI_LIST } + { TARGET_URI_LIST_TYPE, 0, TARGET_URI_LIST }, + { TARGET_URL_TYPE, 0, TARGET_URL } }; #define ELEMENTS(x) (sizeof (x) / sizeof (x[0]))