From 175469e8ab5ec4ebcc333478c5844684db51e0d8 Mon Sep 17 00:00:00 2001 From: Claudio Saavedra Date: Thu, 26 Sep 2013 20:10:02 +0300 Subject: ephy-navigation-history-action: fix missing return value https://bugzilla.gnome.org/show_bug.cgi?id=708461 --- src/ephy-navigation-history-action.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ephy-navigation-history-action.c b/src/ephy-navigation-history-action.c index 4f7f1c90e..92be4ce6f 100644 --- a/src/ephy-navigation-history-action.c +++ b/src/ephy-navigation-history-action.c @@ -651,11 +651,11 @@ tool_button_press_event_cb (GtkButton *button, (GSourceFunc) menu_timeout_cb, data, (GDestroyNotify) g_free); - return FALSE; } else if (event->button == 3) { popup_history_menu (action, GTK_WIDGET (button), event); return TRUE; } + return FALSE; } static gboolean -- cgit v1.2.3