diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-tabs-menu.c | 8 |
2 files changed, 11 insertions, 3 deletions
@@ -1,5 +1,11 @@ 2003-09-24 Marco Pesenti Gritti <marco@gnome.org> + * src/ephy-tabs-menu.c: (tab_removed_cb): + + Remove also from the group + +2003-09-24 Marco Pesenti Gritti <marco@gnome.org> + * lib/ephy-string.c: (ephy_string_double_underscores): * lib/ephy-string.h: * src/bookmarks/ephy-bookmark-action.c: (sync_bookmark_properties): 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); } |