[epiphany] ephy-navigation-history-action: fix missing return value



commit 175469e8ab5ec4ebcc333478c5844684db51e0d8
Author: Claudio Saavedra <csaavedra igalia com>
Date:   Thu Sep 26 20:10:02 2013 +0300

    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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/ephy-navigation-history-action.c b/src/ephy-navigation-history-action.c
index 4f7f1c9..92be4ce 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


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]