Bug fix: Crashes with drag-drop in bookmarks
authorColin Clark <cclark@mcb.net>
Wed, 13 Jul 2016 19:14:46 +0000 (20:14 +0100)
committerColin Clark <cclark@mcb.net>
Wed, 13 Jul 2016 19:14:46 +0000 (20:14 +0100)
commit9d98d221ea57f57ad52967184b19013ce0e5eeda
tree2ff5bce546d008587dbcff450d7ea2f817bb76d5
parent3e8045cddca9265cd7d430d4b10fe510d05c0187
Bug fix: Crashes with drag-drop in bookmarks

Also ameliorates https://github.com/BestImageViewer/geeqie/issues/377

bookmark_drag_begin:
eliminate a run-time error message

bookmark_dnd_get_data:
uri_filelist_from_uris returns a list of type FileData. What is required
is text.

bookmark_drag_set_data:
uris_from_filelist expects a list of type FileData, but was given a list
of type text

The code: "gdk_drag_context_get_dest_window(context) ==
gtk_widget_get_window(bm->widget)"
does not function as expected. The reason is unknown.
In order to avoid crashes, drags from bookmarks are disabled for the
moment.
There is no significant loss of functionality.
src/ui_bookmark.c