changeset 2449:34a941bca6ef

Bug fix: Crash using drag/drop in copy/move dialog In the copy/move dialog, if a folder is dragged onto the bookmarks pane to create a new bookmark, Geeqie will crash. A filedata list was returned instead of a path list.
author Colin Clark <cclark@mcb.net>
date Wed, 22 Feb 2017 10:46:07 +0000
parents d59c6d49dedf
children 361d89e79d74
files src/ui_pathsel.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ui_pathsel.c	Thu Feb 16 00:20:26 2017 +0100
+++ b/src/ui_pathsel.c	Wed Feb 22 10:46:07 2017 +0000
@@ -353,7 +353,7 @@
 
 	list = g_list_append(list, path);
 
-	gchar **uris = uris_from_filelist(list);
+	gchar **uris = uris_from_pathlist(list);
 	gboolean ret = gtk_selection_data_set_uris(selection_data, uris);
 	if (!ret)
 		{