diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-05-17 03:51:18 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-05-17 03:51:18 +0800 |
commit | b452caf1791ce100a9f8f3024aa701a4344bbe7e (patch) | |
tree | 004adff68ff3ccf4ec39244113c0e43d27ef47e0 /e-util | |
parent | 69dcbacecf55a58638ad71d22bea8be9f0d5b7d9 (diff) | |
download | gsoc2013-evolution-b452caf1791ce100a9f8f3024aa701a4344bbe7e.tar gsoc2013-evolution-b452caf1791ce100a9f8f3024aa701a4344bbe7e.tar.gz gsoc2013-evolution-b452caf1791ce100a9f8f3024aa701a4344bbe7e.tar.bz2 gsoc2013-evolution-b452caf1791ce100a9f8f3024aa701a4344bbe7e.tar.lz gsoc2013-evolution-b452caf1791ce100a9f8f3024aa701a4344bbe7e.tar.xz gsoc2013-evolution-b452caf1791ce100a9f8f3024aa701a4344bbe7e.tar.zst gsoc2013-evolution-b452caf1791ce100a9f8f3024aa701a4344bbe7e.zip |
** Fixes bug #514383
2008-05-16 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #514383
* plugins/mark-all-read/mark-all-read.c: Add a Cancel button.
* mail/mail.error.xml: Remove the "ask-mark-read" error.
* e-error.c (e_error_newv): Widget packing adjustments.
svn path=/trunk/; revision=35504
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 6 | ||||
-rw-r--r-- | e-util/e-error.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 41721887d6..5465e03bba 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,9 @@ +2008-05-16 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes part of bug #514383 + + * e-error.c (e_error_newv): Widget packing adjustments. + 2008-05-14 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #531592 diff --git a/e-util/e-error.c b/e-util/e-error.c index ed6369a184..1fee2f4164 100644 --- a/e-util/e-error.c +++ b/e-util/e-error.c @@ -510,7 +510,7 @@ e_error_newv(GtkWindow *parent, const char *tag, const char *arg0, va_list ap) w = gtk_image_new_from_stock(type_map[e->type].icon, GTK_ICON_SIZE_DIALOG); gtk_misc_set_alignment((GtkMisc *)w, 0.0, 0.0); - gtk_box_pack_start((GtkBox *)hbox, w, TRUE, TRUE, 12); + gtk_box_pack_start((GtkBox *)hbox, w, FALSE, FALSE, 12); args = g_ptr_array_new(); tmp = (char *)arg0; @@ -564,7 +564,7 @@ e_error_newv(GtkWindow *parent, const char *tag, const char *arg0, va_list ap) gtk_box_pack_start((GtkBox *)hbox, scroll, FALSE, FALSE, 0); gtk_window_set_default_size ((GtkWindow *)dialog, 360, 180); } else - gtk_box_pack_start((GtkBox *)hbox, w, FALSE, FALSE, 0); + gtk_box_pack_start((GtkBox *)hbox, w, TRUE, TRUE, 0); gtk_widget_show_all(hbox); |