aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-tag-followup.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-04-12 05:18:08 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-04-12 05:18:08 +0800
commit1738e8731eaf872957bd7a722ba461b09ce020c7 (patch)
tree69b672893b8371d0169e8b555f040c9b4dd91c3a /mail/message-tag-followup.c
parent09b2777481cce38d63a988cfda723e682b81b9c5 (diff)
downloadgsoc2013-evolution-1738e8731eaf872957bd7a722ba461b09ce020c7.tar
gsoc2013-evolution-1738e8731eaf872957bd7a722ba461b09ce020c7.tar.gz
gsoc2013-evolution-1738e8731eaf872957bd7a722ba461b09ce020c7.tar.bz2
gsoc2013-evolution-1738e8731eaf872957bd7a722ba461b09ce020c7.tar.lz
gsoc2013-evolution-1738e8731eaf872957bd7a722ba461b09ce020c7.tar.xz
gsoc2013-evolution-1738e8731eaf872957bd7a722ba461b09ce020c7.tar.zst
gsoc2013-evolution-1738e8731eaf872957bd7a722ba461b09ce020c7.zip
Fixes bug #41243.
2003-04-11 Jeffrey Stedfast <fejj@ximian.com> Fixes bug #41243. * message-tag-followup.c (construct): Change the window border width and packing to comply with the HIG. * message-tags.glade: Updated to comply with the HIG. svn path=/trunk/; revision=20833
Diffstat (limited to 'mail/message-tag-followup.c')
-rw-r--r--mail/message-tag-followup.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mail/message-tag-followup.c b/mail/message-tag-followup.c
index 59ebf29f13..09a0aa6622 100644
--- a/mail/message-tag-followup.c
+++ b/mail/message-tag-followup.c
@@ -282,6 +282,7 @@ construct (MessageTagEditor *editor)
gtk_window_set_title (GTK_WINDOW (editor), _("Flag to Follow Up"));
gnome_window_icon_set_from_file (GTK_WINDOW (editor), EVOLUTION_IMAGES "/flag-for-followup-16.png");
+ gtk_container_set_border_width (GTK_CONTAINER (editor), 6);
gui = glade_xml_new (EVOLUTION_GLADEDIR "/message-tags.glade", "followup_editor", NULL);
@@ -289,6 +290,7 @@ construct (MessageTagEditor *editor)
/* reparent */
gtk_widget_reparent (widget, GTK_DIALOG (editor)->vbox);
+ gtk_box_set_child_packing (GTK_BOX (GTK_DIALOG (editor)->vbox), widget, TRUE, TRUE, 6, GTK_PACK_START);
widget = glade_xml_get_widget (gui, "pixmap");
gtk_image_set_from_file ((GtkImage *)widget, EVOLUTION_GLADEDIR "/flag-for-followup-48.png");