diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-11 04:43:48 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-11 04:43:48 +0800 |
commit | b08b93d946c4e8688ad68f1c5c7ccbe0e1ab76e0 (patch) | |
tree | d20bdfc05b4d3cc669db4d0d3e556120c3414c4e /shell/e-shell.c | |
parent | 62e880130bebe19aef3eef95dc4d66578950c0c2 (diff) | |
download | gsoc2013-evolution-b08b93d946c4e8688ad68f1c5c7ccbe0e1ab76e0.tar.gz gsoc2013-evolution-b08b93d946c4e8688ad68f1c5c7ccbe0e1ab76e0.tar.zst gsoc2013-evolution-b08b93d946c4e8688ad68f1c5c7ccbe0e1ab76e0.zip |
Make the view save its settings as the default ones if it's the last one.
* e-shell.c (e_shell_request_close_view): Make the view save its
settings as the default ones if it's the last one.
* e-shell-view-menu.c (command_quit): Make this view save its
settings as the defaults before quitting.
svn path=/trunk/; revision=19410
Diffstat (limited to 'shell/e-shell.c')
-rw-r--r-- | shell/e-shell.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/shell/e-shell.c b/shell/e-shell.c index 837bc3cc6c..7b99f2b9a4 100644 --- a/shell/e-shell.c +++ b/shell/e-shell.c @@ -1499,7 +1499,11 @@ e_shell_request_close_view (EShell *shell, if (shell->priv->preparing_to_quit) return FALSE; - /* If it's the last view, ask for confirm. */ + /* If it's the last view, save settings and ask for confirmation before + quitting. */ + + e_shell_view_save_defaults (shell_view); + if (e_shell_prepare_for_quit (shell)) return TRUE; else |