diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-02-03 01:14:53 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-02-03 01:14:53 +0800 |
commit | bd3b4f546229f070c28fddbbc408828eee368928 (patch) | |
tree | 94778d386c109995a5689fc1756836be5bd3a18b | |
parent | 1483504f831e6db2c7d15ca44c73a0f66711969b (diff) | |
download | gsoc2013-evolution-bd3b4f546229f070c28fddbbc408828eee368928.tar gsoc2013-evolution-bd3b4f546229f070c28fddbbc408828eee368928.tar.gz gsoc2013-evolution-bd3b4f546229f070c28fddbbc408828eee368928.tar.bz2 gsoc2013-evolution-bd3b4f546229f070c28fddbbc408828eee368928.tar.lz gsoc2013-evolution-bd3b4f546229f070c28fddbbc408828eee368928.tar.xz gsoc2013-evolution-bd3b4f546229f070c28fddbbc408828eee368928.tar.zst gsoc2013-evolution-bd3b4f546229f070c28fddbbc408828eee368928.zip |
Destroy the S/MIME frame if not available, instead of just graying it out.
* 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.]
svn path=/trunk/; revision=15554
-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 |