summaryrefslogtreecommitdiff
path: root/desktop/hotlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/hotlist.c')
-rw-r--r--desktop/hotlist.c5
1 files changed, 3 insertions, 2 deletions
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;