diff options
author | Not Zed <NotZed@Ximian.com> | 2004-01-30 14:17:31 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-01-30 14:17:31 +0800 |
commit | a4b5deaad2dd08e78cea7b0e4f8f357bfc19e53b (patch) | |
tree | fd8a1bc249498ed5fd403a645afda8676ebb0e39 /mail/message-list.c | |
parent | cc39091f0fc913c5314dafd7461c5ab7e356c7f0 (diff) | |
download | gsoc2013-evolution-a4b5deaad2dd08e78cea7b0e4f8f357bfc19e53b.tar.gz gsoc2013-evolution-a4b5deaad2dd08e78cea7b0e4f8f357bfc19e53b.tar.zst gsoc2013-evolution-a4b5deaad2dd08e78cea7b0e4f8f357bfc19e53b.zip |
** See bug #53549, partial fix.
2004-01-30 Not Zed <NotZed@Ximian.com>
** See bug #53549, partial fix.
* em-folder-selector.c (emfs_create_name_activate): only emit the
ok response if the ok button would be active (i.e. entered a valid
path).
** See bug #52992.
* message-list.c (message_list_hide_clear): save the hide state
after its been cleared, so any popup windows inherit it.
(message_list_hide_uids): same.
svn path=/trunk/; revision=24534
Diffstat (limited to 'mail/message-list.c')
-rw-r--r-- | mail/message-list.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mail/message-list.c b/mail/message-list.c index fe3147f70e..17364a43a6 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -2958,6 +2958,8 @@ message_list_hide_uids (MessageList *ml, GPtrArray *uids) } } MESSAGE_LIST_UNLOCK (ml, hide_lock); + /* save this here incase the user pops up another window, so they are consistent */ + save_hide_state(ml); mail_regen_list (ml, ml->search, NULL, NULL); break; } @@ -2984,6 +2986,8 @@ message_list_hide_clear (MessageList *ml) ml->thread_tree = NULL; } + /* save this here incase the user pops up another window, so they are consistent */ + save_hide_state(ml); mail_regen_list (ml, ml->search, NULL, NULL); } |