diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-09-30 02:11:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-09-30 02:14:01 +0800 |
commit | 81364eb7fb9583db3578932ebe8649e61ab471b0 (patch) | |
tree | c0e00a72cddd883c76e9a29dc71323238c813799 | |
parent | ab60ffb45efa02595ad073aa65cb52e81637bc98 (diff) | |
download | gsoc2013-evolution-81364eb7fb9583db3578932ebe8649e61ab471b0.tar gsoc2013-evolution-81364eb7fb9583db3578932ebe8649e61ab471b0.tar.gz gsoc2013-evolution-81364eb7fb9583db3578932ebe8649e61ab471b0.tar.bz2 gsoc2013-evolution-81364eb7fb9583db3578932ebe8649e61ab471b0.tar.lz gsoc2013-evolution-81364eb7fb9583db3578932ebe8649e61ab471b0.tar.xz gsoc2013-evolution-81364eb7fb9583db3578932ebe8649e61ab471b0.tar.zst gsoc2013-evolution-81364eb7fb9583db3578932ebe8649e61ab471b0.zip |
Bug 596712 - Recovered messages not autosaved until modification
-rw-r--r-- | composer/e-msg-composer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index 5fb5bcea76..7bb7af7834 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -1308,7 +1308,7 @@ autosave_load_draft (const gchar *filename) /* Mark the message as changed so it gets autosaved again, * then we can safely remove the old autosave file in the * callback function. */ - gtkhtml_editor_set_changed (GTKHTML_EDITOR (composer), FALSE); + gtkhtml_editor_set_changed (GTKHTML_EDITOR (composer), TRUE); e_composer_autosave_snapshot_async ( composer, (GAsyncReadyCallback) autosave_load_draft_cb, g_strdup (filename)); |