diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-09-29 08:13:10 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-09-29 08:13:10 +0800 |
commit | 28783ed7f587fc4420c804cf16e78ccd1b75cf46 (patch) | |
tree | e54c9cfff4ac7248fbbb8a8f081d910518d60d22 /mail/mail-accounts.c | |
parent | 4caf4a1d4e30c9bd171350ce3672f25a2a176c1e (diff) | |
download | gsoc2013-evolution-28783ed7f587fc4420c804cf16e78ccd1b75cf46.tar.gz gsoc2013-evolution-28783ed7f587fc4420c804cf16e78ccd1b75cf46.tar.zst gsoc2013-evolution-28783ed7f587fc4420c804cf16e78ccd1b75cf46.zip |
Don't create checkboxes for global Threaded or Preview options as they are
2001-09-28 Jeffrey Stedfast <fejj@ximian.com>
* mail-accounts.c (construct): Don't create checkboxes for global
Threaded or Preview options as they are now removed.
svn path=/trunk/; revision=13244
Diffstat (limited to 'mail/mail-accounts.c')
-rw-r--r-- | mail/mail-accounts.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mail/mail-accounts.c b/mail/mail-accounts.c index 15228dc61a..0bc9191743 100644 --- a/mail/mail-accounts.c +++ b/mail/mail-accounts.c @@ -683,6 +683,8 @@ prompt_bcc_only_toggled (GtkWidget *toggle, gpointer data) mail_config_set_prompt_only_bcc (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (toggle))); } +#if 0 +/* Note: Please see construct() for a reason as to why these 2 options are disabled */ static void thread_list_toggled (GtkWidget *toggle, gpointer data) { @@ -694,6 +696,7 @@ show_preview_toggled (GtkWidget *toggle, gpointer data) { mail_config_set_show_preview (NULL, gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (toggle))); } +#endif static void filter_log_toggled (GtkWidget *toggle, gpointer data) @@ -835,6 +838,8 @@ construct (MailAccountsDialog *dialog) gtk_signal_connect (GTK_OBJECT (dialog->images_always), "toggled", GTK_SIGNAL_FUNC (images_radio_toggled), dialog); +#if 0 + /* These options are disabled because they are completely non-intuitive and evil */ dialog->thread_list = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui, "chkThreadedList")); gtk_toggle_button_set_active (dialog->thread_list, mail_config_get_thread_list (NULL)); gtk_signal_connect (GTK_OBJECT (dialog->thread_list), "toggled", @@ -844,6 +849,7 @@ construct (MailAccountsDialog *dialog) gtk_toggle_button_set_active (dialog->show_preview, mail_config_get_show_preview (NULL)); gtk_signal_connect (GTK_OBJECT (dialog->show_preview), "toggled", GTK_SIGNAL_FUNC (show_preview_toggled), dialog); +#endif /* Composer page */ dialog->send_html = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui, "chkSendHTML")); |