[epiphany/gnome-3-26] header-bar: Don't disable navigation actions when history is cleared



commit 1879cf7455d53903b2fe080c15b37bd403562c28
Author: Michael Catanzaro <mcatanzaro igalia com>
Date:   Fri Sep 29 10:51:25 2017 -0500

    header-bar: Don't disable navigation actions when history is cleared
    
    There's no reason to do this. The history service is not needed for the
    back/forward list to work properly, so no reason to disable back/forward
    after clearing history. And it's disabling the stop/reload action, too,
    which doesn't make any sense. Especially since  there is no code to ever
    enable it again.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=788329

 src/ephy-header-bar.c |   26 --------------------------
 1 files changed, 0 insertions(+), 26 deletions(-)
---
diff --git a/src/ephy-header-bar.c b/src/ephy-header-bar.c
index 4169dcd..7e4b0ef 100644
--- a/src/ephy-header-bar.c
+++ b/src/ephy-header-bar.c
@@ -206,25 +206,6 @@ typedef enum {
   WEBKIT_HISTORY_FORWARD
 } WebKitHistoryType;
 
-static void
-ephy_history_cleared_cb (EphyHistoryService *history,
-                         gpointer            user_data)
-{
-  GActionGroup *action_group;
-  GAction *action;
-  guint i;
-  gchar **actions;
-
-  action_group = gtk_widget_get_action_group (GTK_WIDGET (user_data), "toolbar");
-  actions = g_action_group_list_actions (action_group);
-  for (i = 0; actions[i] != NULL; i++) {
-    action = g_action_map_lookup_action (G_ACTION_MAP (action_group), actions[i]);
-    ephy_action_change_sensitivity_flags (G_SIMPLE_ACTION (action), SENS_FLAG, TRUE);
-  }
-
-  g_strfreev (actions);
-}
-
 static gboolean
 item_enter_notify_event_cb (GtkWidget   *widget,
                             GdkEvent    *event,
@@ -628,7 +609,6 @@ ephy_header_bar_constructed (GObject *object)
   GtkWidget *page_menu_popover;
   EphyDownloadsManager *downloads_manager;
   GtkBuilder *builder;
-  EphyHistoryService *history_service;
   EphyEmbedShell *embed_shell;
 
   G_OBJECT_CLASS (ephy_header_bar_parent_class)->constructed (object);
@@ -826,12 +806,6 @@ ephy_header_bar_constructed (GObject *object)
 
   gtk_header_bar_pack_end (GTK_HEADER_BAR (header_bar), header_bar->downloads_revealer);
   gtk_widget_show (header_bar->downloads_revealer);
-
-  history_service = ephy_embed_shell_get_global_history_service (ephy_embed_shell_get_default ());
-
-  g_signal_connect (history_service,
-                    "cleared", G_CALLBACK (ephy_history_cleared_cb),
-                    header_bar->window);
 }
 
 static void


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