diff options
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/mail-account-gui.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index b24587db2d..614118a8ee 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,12 @@ 2002-02-02 Ettore Perazzoli <ettore@ximian.com> + * mail-account-gui.c (mail_account_gui_new): Destroy the S/MIME + frame if not available, instead of just graying it out. [I would + just hide it, but it looks like there is a show_all somewhere so + that doesn't work.] + +2002-02-02 Ettore Perazzoli <ettore@ximian.com> + * mail-config.glade: Some touchups from me and Anna. 2002-01-31 Jeffrey Stedfast <fejj@ximian.com> diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c index 0eb381a708..ab1a249ff9 100644 --- a/mail/mail-account-gui.c +++ b/mail/mail-account-gui.c @@ -1380,7 +1380,7 @@ mail_account_gui_new (MailConfigAccount *account) GtkWidget *frame; frame = glade_xml_get_widget (gui->xml, "smime_frame"); - gtk_widget_set_sensitive (frame, FALSE); + gtk_widget_destroy (frame); } #endif |