Fix cookie manager keypress consumption return

This commit is contained in:
Vincent Sanders 2016-07-31 00:07:07 +01:00
parent 8dbb61d2f5
commit 0f5d7cfcd2
2 changed files with 3 additions and 3 deletions

View File

@ -844,9 +844,9 @@ void cookie_manager_mouse_action(enum browser_mouse_state mouse, int x, int y)
/* Exported interface, documented in cookie_manager.h */ /* Exported interface, documented in cookie_manager.h */
void cookie_manager_keypress(uint32_t key) bool cookie_manager_keypress(uint32_t key)
{ {
treeview_keypress(cm_ctx.tree, key); return treeview_keypress(cm_ctx.tree, key);
} }

View File

@ -101,7 +101,7 @@ void cookie_manager_mouse_action(enum browser_mouse_state mouse, int x, int y);
* \param key The ucs4 character codepoint * \param key The ucs4 character codepoint
* \return true if the keypress is dealt with, false otherwise. * \return true if the keypress is dealt with, false otherwise.
*/ */
void cookie_manager_keypress(uint32_t key); bool cookie_manager_keypress(uint32_t key);
/** /**
* Determine whether there is a selection * Determine whether there is a selection