diff options
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index fec2a2febd..8cecea7d4f 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -525,12 +525,21 @@ view_destroy_cb (GtkObject *object, gpointer data) { EShell *shell; + int nviews; g_assert (E_IS_SHELL_VIEW (object)); shell = E_SHELL (data); - shell->priv->views = g_list_remove ( - shell->priv->views, object); + + nviews = g_list_length (shell->priv->views); + + /* If this is our last view, save settings now because in the + callback for no_views_left shell->priv->views will be NULL + and settings won't be saved because of that */ + if (nviews - 1 == 0) + e_shell_save_settings (shell); + + shell->priv->views = g_list_remove (shell->priv->views, object); if (shell->priv->views == NULL) { /* FIXME: This looks like a Bonobo bug to me. */ |