diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-10-30 01:43:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-10-30 01:46:27 +0800 |
commit | 46bfd9b497963ca51ff5806f7e70f1d73f68576a (patch) | |
tree | 5788d47ed130f2b561fe14a1f62377fe03b8f19a | |
parent | d474c030d7ddf3aadfb274368f7e2ac0128423a8 (diff) | |
download | gsoc2013-evolution-46bfd9b497963ca51ff5806f7e70f1d73f68576a.tar.gz gsoc2013-evolution-46bfd9b497963ca51ff5806f7e70f1d73f68576a.tar.zst gsoc2013-evolution-46bfd9b497963ca51ff5806f7e70f1d73f68576a.zip |
BugĀ 599837 - Junk plugin combo box is invisible
-rw-r--r-- | modules/mail/em-mailer-prefs.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/mail/em-mailer-prefs.c b/modules/mail/em-mailer-prefs.c index 03f8973ab4..f27ec7d04a 100644 --- a/modules/mail/em-mailer-prefs.c +++ b/modules/mail/em-mailer-prefs.c @@ -799,8 +799,14 @@ junk_plugin_setup (GtkWidget *combo, EMMailerPrefs *prefs) } GtkWidget * -create_combo_text_widget (void) { - return gtk_combo_box_new_text (); +create_combo_text_widget (void) +{ + GtkWidget *widget; + + widget = gtk_combo_box_new_text (); + gtk_widget_show (widget); + + return widget; } static void |