diff options
author | Ashwini Oruganti <ashwini.oruganti@gmail.com> | 2012-03-26 23:20:53 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-03-26 23:20:53 +0800 |
commit | 1ab9016a09ab8e3dc4d6777194a7903e1d80c21e (patch) | |
tree | 16e25d3a6b7f790e6aa06b7804fdf574312dd879 /plugins | |
parent | bdb60aa9ce2789034402c3f31a5829201d822641 (diff) | |
download | gsoc2013-evolution-1ab9016a09ab8e3dc4d6777194a7903e1d80c21e.tar.gz gsoc2013-evolution-1ab9016a09ab8e3dc4d6777194a7903e1d80c21e.tar.zst gsoc2013-evolution-1ab9016a09ab8e3dc4d6777194a7903e1d80c21e.zip |
Bug #593449 - custom-header-plugin: minor tweak to configuration tab
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/email-custom-header/email-custom-header.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/email-custom-header/email-custom-header.c b/plugins/email-custom-header/email-custom-header.c index 5376d26410..324007d615 100644 --- a/plugins/email-custom-header/email-custom-header.c +++ b/plugins/email-custom-header/email-custom-header.c @@ -792,7 +792,7 @@ e_plugin_lib_get_configure_widget (EPlugin *epl) GtkWidget *header_edit; GtkWidget *header_remove; - ech_configuration_box = gtk_vbox_new (FALSE, 0); + ech_configuration_box = gtk_vbox_new (FALSE, 6); gtk_widget_show (ech_configuration_box); vbox2 = gtk_vbox_new (FALSE, 0); @@ -806,11 +806,11 @@ e_plugin_lib_get_configure_widget (EPlugin *epl) gtk_label_set_justify (GTK_LABEL (label1), GTK_JUSTIFY_CENTER); gtk_label_set_line_wrap (GTK_LABEL (label1), TRUE); - header_configuration_box = gtk_vbox_new (FALSE, 5); + header_configuration_box = gtk_vbox_new (FALSE, 6); gtk_widget_show (header_configuration_box); gtk_box_pack_start (GTK_BOX (ech_configuration_box), header_configuration_box, TRUE, TRUE, 0); - header_container = gtk_hbox_new (FALSE, 6); + header_container = gtk_hbox_new (FALSE, 12); gtk_widget_show (header_container); gtk_box_pack_start (GTK_BOX (header_configuration_box), header_container, TRUE, TRUE, 0); |