aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-03-25 03:58:48 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-03-25 04:50:19 +0800
commitd5d651cf7885a2d61cb542a990f00489537224c2 (patch)
treeb01a0ccdfb88ecd2ead32a3fdf8e1da077523faa
parentf7c3a01627b3824991dcbfc5d7fb70fb37f7b242 (diff)
downloadgsoc2013-evolution-d5d651cf7885a2d61cb542a990f00489537224c2.tar
gsoc2013-evolution-d5d651cf7885a2d61cb542a990f00489537224c2.tar.gz
gsoc2013-evolution-d5d651cf7885a2d61cb542a990f00489537224c2.tar.bz2
gsoc2013-evolution-d5d651cf7885a2d61cb542a990f00489537224c2.tar.lz
gsoc2013-evolution-d5d651cf7885a2d61cb542a990f00489537224c2.tar.xz
gsoc2013-evolution-d5d651cf7885a2d61cb542a990f00489537224c2.tar.zst
gsoc2013-evolution-d5d651cf7885a2d61cb542a990f00489537224c2.zip
Bug 645545 - Attachment reminder dialog uses wrong expand
-rw-r--r--plugins/attachment-reminder/attachment-reminder.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/attachment-reminder/attachment-reminder.c b/plugins/attachment-reminder/attachment-reminder.c
index 25b0ddb514..723e8cfe5d 100644
--- a/plugins/attachment-reminder/attachment-reminder.c
+++ b/plugins/attachment-reminder/attachment-reminder.c
@@ -115,9 +115,8 @@ ask_for_missing_attachment (EPlugin *ep, GtkWindow *window)
/*Check buttons*/
check = gtk_check_button_new_with_mnemonic (_("_Do not show this message again."));
- gtk_container_set_border_width ((GtkContainer *)check, 12);
content_area = gtk_dialog_get_content_area (dialog);
- gtk_box_pack_start (GTK_BOX (content_area), check, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (content_area), check, FALSE, FALSE, 0);
gtk_widget_show (check);
response = gtk_dialog_run ((GtkDialog *) dialog);