diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-01-11 07:28:15 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-01-11 07:28:15 +0800 |
commit | 18b44d230e3a9a687d1f581aa00ebd52c0a4d69a (patch) | |
tree | df598de4f81c97ebc24b8c82138423f327caa8c6 /mail/ChangeLog | |
parent | 17bdb9c55fc2f204ec25757cce7937dc03b89dc2 (diff) | |
download | gsoc2013-evolution-18b44d230e3a9a687d1f581aa00ebd52c0a4d69a.tar gsoc2013-evolution-18b44d230e3a9a687d1f581aa00ebd52c0a4d69a.tar.gz gsoc2013-evolution-18b44d230e3a9a687d1f581aa00ebd52c0a4d69a.tar.bz2 gsoc2013-evolution-18b44d230e3a9a687d1f581aa00ebd52c0a4d69a.tar.lz gsoc2013-evolution-18b44d230e3a9a687d1f581aa00ebd52c0a4d69a.tar.xz gsoc2013-evolution-18b44d230e3a9a687d1f581aa00ebd52c0a4d69a.tar.zst gsoc2013-evolution-18b44d230e3a9a687d1f581aa00ebd52c0a4d69a.zip |
We also need to call message_list_set_hidedeleted() here so that any
2003-01-10 Jeffrey Stedfast <fejj@ximian.com>
* folder-browser-ui.c (folder_browser_ui_add_list): We also need
to call message_list_set_hidedeleted() here so that any
deactivated folder controls will change to the currently set state
when re-activated.
(folder_browser_ui_add_global): Same for show_preview.
* folder-browser.c (hide_deleted_changed): Don't call
message_list_set_hidedeleted() here.
(folder_browser_toggle_hide_deleted): Instead, call it here. This
way we get a faster "response time". Also, this will make it so
that not all folder controls will regen their message-list at the
same time.
(folder_browser_toggle_preview): Same idea as the hide-deleted
changes.
(show_preview_changed): See above.
* mail-config-druid.c (make_account): Default the new account to
enabled.
(wizard_finish_cb): Don't set enabled here.
svn path=/trunk/; revision=19417
Diffstat (limited to 'mail/ChangeLog')
-rw-r--r-- | mail/ChangeLog | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index e80c32700d..f750a6960f 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,36 @@ 2003-01-10 Jeffrey Stedfast <fejj@ximian.com> + * folder-browser-ui.c (folder_browser_ui_add_list): We also need + to call message_list_set_hidedeleted() here so that any + deactivated folder controls will change to the currently set state + when re-activated. + (folder_browser_ui_add_global): Same for show_preview. + + * folder-browser.c (hide_deleted_changed): Don't call + message_list_set_hidedeleted() here. + (folder_browser_toggle_hide_deleted): Instead, call it here. This + way we get a faster "response time". Also, this will make it so + that not all folder controls will regen their message-list at the + same time. + (folder_browser_toggle_preview): Same idea as the hide-deleted + changes. + (show_preview_changed): See above. + + * mail-config-druid.c (make_account): Default the new account to + enabled. + (wizard_finish_cb): Don't set enabled here. + +2003-01-10 Jeffrey Stedfast <fejj@ximian.com> + + * folder-browser.c (hide_deleted_changed): New callback for when + the HideDeleted state changes. + (folder_browser_gui_init): Listen for changes to hide_deleted so + we can update the menu state. + (folder_browser_destroy): Remove the hide_deleted notify handler. + (folder_browser_toggle_hide_deleted): When saving the setting, + remember that it is !atoi (state) rather than atoi (state) because + show vs hide. yea. + * mail-session.c (main_get_filter_driver): notify-type is a int, not a bool. Duh. |