From 73b81a59ccaf09f695a643eae06fb510ec4559b4 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 4 Aug 2016 23:40:34 +0100 Subject: fix global history keypress consumption return --- desktop/global_history.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop/global_history.c') diff --git a/desktop/global_history.c b/desktop/global_history.c index ac4790f3f..d60874c67 100644 --- a/desktop/global_history.c +++ b/desktop/global_history.c @@ -947,9 +947,9 @@ void global_history_mouse_action(browser_mouse_state mouse, int x, int y) /* Exported interface, documented in global_history.h */ -void global_history_keypress(uint32_t key) +bool global_history_keypress(uint32_t key) { - treeview_keypress(gh_ctx.tree, key); + return treeview_keypress(gh_ctx.tree, key); } -- cgit v1.2.3