From b5a259caecd8811a90c4eb82fee402449ec617ba Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Wed, 19 May 2004 18:45:34 +0000 Subject: Emit the "tab_removed" signal also for the window's last tab. Part of bug 2004-05-19 Christian Persch * src/ephy-notebook.c: (ephy_notebook_remove_tab): * src/ephy-window.c: (tab_removed_cb): Emit the "tab_removed" signal also for the window's last tab. Part of bug #142078. --- ChangeLog | 8 ++++++++ src/ephy-notebook.c | 2 ++ src/ephy-window.c | 7 +------ 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7735d1664..b0d61a4ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2004-05-19 Christian Persch + + * src/ephy-notebook.c: (ephy_notebook_remove_tab): + * src/ephy-window.c: (tab_removed_cb): + + Emit the "tab_removed" signal also for the window's last tab. + Part of bug #142078. + 2004-05-19 Christian Persch * src/bookmarks/ephy-bookmark-action.c: (activate_cb), diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c index 3e8689100..05412a11b 100644 --- a/src/ephy-notebook.c +++ b/src/ephy-notebook.c @@ -1091,6 +1091,8 @@ ephy_notebook_remove_tab (EphyNotebook *nb, { GtkWidget *window; window = gtk_widget_get_toplevel (GTK_WIDGET (nb)); + + g_signal_emit (G_OBJECT (nb), signals[TAB_REMOVED], 0, tab); gtk_widget_destroy (window); return; } diff --git a/src/ephy-window.c b/src/ephy-window.c index fced25c38..4819afee8 100644 --- a/src/ephy-window.c +++ b/src/ephy-window.c @@ -1659,12 +1659,7 @@ tab_removed_cb (EphyNotebook *notebook, window->priv->num_tabs--; - if (window->priv->num_tabs == 0) - { - /* removed the last tab, close the window */ - gtk_widget_destroy (GTK_WIDGET (window)); - } - else + if (window->priv->num_tabs > 0) { update_tabs_menu_sensitivity (window); } -- cgit v1.2.3