[evolution/webkit] Slightly smaller dialogs for Reply type questions (but not all)
- From: Dan VrÃtil <dvratil src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/webkit] Slightly smaller dialogs for Reply type questions (but not all)
- Date: Mon, 11 Jul 2011 14:16:00 +0000 (UTC)
commit c69b939597275271d2c7e1f009a1a6c10e35586b
Author: Milan Crha <mcrha redhat com>
Date: Tue Mar 1 12:06:16 2011 +0100
Slightly smaller dialogs for Reply type questions (but not all)
mail/e-mail-reader.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c
index 3f5a056..6a90fe6 100644
--- a/mail/e-mail-reader.c
+++ b/mail/e-mail-reader.c
@@ -1265,7 +1265,7 @@ action_mail_reply_all_check (CamelFolder *folder,
check = gtk_check_button_new_with_mnemonic (_("_Do not ask me again."));
gtk_container_set_border_width (GTK_CONTAINER (check), 12);
content_area = gtk_dialog_get_content_area (GTK_DIALOG (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 (GTK_DIALOG (dialog));
@@ -1422,7 +1422,7 @@ action_mail_reply_sender_check (CamelFolder *folder,
gtk_container_set_border_width ((GtkContainer *)check, 12);
content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
gtk_box_pack_start (
- GTK_BOX (content_area), check, TRUE, TRUE, 0);
+ GTK_BOX (content_area), check, FALSE, FALSE, 0);
gtk_widget_show (check);
response = gtk_dialog_run (GTK_DIALOG (dialog));
@@ -1456,18 +1456,18 @@ action_mail_reply_sender_check (CamelFolder *folder,
vbox = gtk_vbox_new (FALSE, 0);
content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
- gtk_box_pack_start (GTK_BOX (content_area), vbox, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (content_area), vbox, FALSE, FALSE, 0);
gtk_widget_show (vbox);
check_again = gtk_check_button_new_with_mnemonic (
_("_Do not ask me again."));
- gtk_box_pack_start (GTK_BOX (vbox), check_again, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (vbox), check_again, FALSE, FALSE, 0);
gtk_widget_show (check_again);
check_always_ignore = gtk_check_button_new_with_mnemonic (
_("_Always ignore Reply-To: for mailing lists."));
gtk_box_pack_start (
- GTK_BOX (vbox), check_always_ignore, TRUE, TRUE, 0);
+ GTK_BOX (vbox), check_always_ignore, FALSE, FALSE, 0);
gtk_widget_show (check_always_ignore);
response = gtk_dialog_run (GTK_DIALOG (dialog));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]