From 8aba77a0e9edb7baecde22c7ded14c8550071f5c Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Wed, 20 Jan 2010 23:16:29 +0100 Subject: [PATCH] Allow button handling for selection and context menu in location entry --- midori/midori-locationaction.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/midori/midori-locationaction.c b/midori/midori-locationaction.c index 9cfc0a1d..274e5138 100644 --- a/midori/midori-locationaction.c +++ b/midori/midori-locationaction.c @@ -889,7 +889,8 @@ midori_location_action_button_press_event_cb (GtkEntry* entry, { midori_location_action_popdown_completion (action); - return TRUE; + /* Allow button handling, for context menu and selection */ + return FALSE; } return FALSE;