From 1406ab3ba29e8a9e6f40ab63b497b9019608c98c Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Wed, 24 Sep 2003 13:06:21 +0000 Subject: Remove also from the group 2003-09-24 Marco Pesenti Gritti * src/ephy-tabs-menu.c: (tab_removed_cb): Remove also from the group --- ChangeLog | 6 ++++++ src/ephy-tabs-menu.c | 8 +++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 30972f748..bd3b24d2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-09-24 Marco Pesenti Gritti + + * src/ephy-tabs-menu.c: (tab_removed_cb): + + Remove also from the group + 2003-09-24 Marco Pesenti Gritti * lib/ephy-string.c: (ephy_string_double_underscores): 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); } -- cgit v1.2.3