diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2013-09-27 01:10:02 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2013-09-27 01:10:02 +0800 |
commit | 175469e8ab5ec4ebcc333478c5844684db51e0d8 (patch) | |
tree | 4cceb5ce87e71f28a3120247822569685beab053 | |
parent | 58189dc3420e9cf75909e7955a933f08c83ace06 (diff) | |
download | gsoc2013-epiphany-175469e8ab5ec4ebcc333478c5844684db51e0d8.tar gsoc2013-epiphany-175469e8ab5ec4ebcc333478c5844684db51e0d8.tar.gz gsoc2013-epiphany-175469e8ab5ec4ebcc333478c5844684db51e0d8.tar.bz2 gsoc2013-epiphany-175469e8ab5ec4ebcc333478c5844684db51e0d8.tar.lz gsoc2013-epiphany-175469e8ab5ec4ebcc333478c5844684db51e0d8.tar.xz gsoc2013-epiphany-175469e8ab5ec4ebcc333478c5844684db51e0d8.tar.zst gsoc2013-epiphany-175469e8ab5ec4ebcc333478c5844684db51e0d8.zip |
ephy-navigation-history-action: fix missing return value
https://bugzilla.gnome.org/show_bug.cgi?id=708461
-rw-r--r-- | src/ephy-navigation-history-action.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |