summaryrefslogtreecommitdiff
path: root/desktop/global_history.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/global_history.c')
-rw-r--r--desktop/global_history.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/desktop/global_history.c b/desktop/global_history.c
index 09154f2d1..ebccfc6b6 100644
--- a/desktop/global_history.c
+++ b/desktop/global_history.c
@@ -954,10 +954,11 @@ bool global_history_has_selection(void)
bool global_history_get_selection(nsurl **url, const char **title)
{
struct global_history_entry *e;
+ enum treeview_node_type type;
void *v;
- treeview_get_selection(gh_ctx.tree, &v);
- if (v == NULL) {
+ type = treeview_get_selection(gh_ctx.tree, &v);
+ if (type != TREE_NODE_ENTRY || v == NULL) {
*url = NULL;
*title = NULL;
return false;