aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-tabs-menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ephy-tabs-menu.c')
-rw-r--r--src/ephy-tabs-menu.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ephy-tabs-menu.c b/src/ephy-tabs-menu.c
index a2eceb1e0..4a6e7ca25 100644
--- a/src/ephy-tabs-menu.c
+++ b/src/ephy-tabs-menu.c
@@ -118,12 +118,14 @@ static void
tab_removed_cb (EphyNotebook *notebook, GtkWidget *child, EphyTabsMenu *menu)
{
EphyTab *tab;
+ GtkAction *action;
g_return_if_fail (EPHY_IS_EMBED (child));
tab = EPHY_TAB (g_object_get_data (G_OBJECT (child), "EphyTab"));
-
- gtk_action_group_remove_action (menu->priv->action_group,
- GTK_ACTION (ephy_tab_get_action (tab)));
+
+ action = GTK_ACTION (ephy_tab_get_action (tab));
+ gtk_radio_action_set_group (GTK_RADIO_ACTION (action), NULL);
+ gtk_action_group_remove_action (menu->priv->action_group, action);
ephy_tabs_menu_update (menu);
}