From ce4d52e72aa0fc09bd2207db175bc83c278bb0c6 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 24 May 2014 15:09:20 +0100 Subject: Fix hotlist and global_history _get_selection functions. Broken when selection was folder, rather than entry. Renamed tree_node_flags lables to avoid TREE_NODE_NONE name clash. --- desktop/hotlist.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'desktop/hotlist.c') diff --git a/desktop/hotlist.c b/desktop/hotlist.c index f9a390e1a..aa4370e96 100644 --- a/desktop/hotlist.c +++ b/desktop/hotlist.c @@ -1501,10 +1501,11 @@ bool hotlist_has_selection(void) bool hotlist_get_selection(nsurl **url, const char **title) { struct hotlist_entry *e; + enum treeview_node_type type; void *v; - treeview_get_selection(hl_ctx.tree, &v); - if (v == NULL) { + type = treeview_get_selection(hl_ctx.tree, &v); + if (type != TREE_NODE_ENTRY || v == NULL) { *url = NULL; *title = NULL; return false; -- cgit v1.2.3