diff options
author | Milan Crha <mcrha@redhat.com> | 2009-12-02 20:56:13 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-12-02 20:56:13 +0800 |
commit | 86770f6b7749b08a2b7867979a2c9726941ed52e (patch) | |
tree | 9ebe1141346e684e5efb31078289d96f036b6390 | |
parent | 38a616e8b77cbe8bce87c97e66f7b542eda24235 (diff) | |
download | gsoc2013-evolution-86770f6b7749b08a2b7867979a2c9726941ed52e.tar.gz gsoc2013-evolution-86770f6b7749b08a2b7867979a2c9726941ed52e.tar.zst gsoc2013-evolution-86770f6b7749b08a2b7867979a2c9726941ed52e.zip |
Fixing widgets order and adding back mnemonics after glade removal
-rw-r--r-- | modules/mail/em-mailer-prefs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/mail/em-mailer-prefs.c b/modules/mail/em-mailer-prefs.c index 93829bbd4f..e62b4cd972 100644 --- a/modules/mail/em-mailer-prefs.c +++ b/modules/mail/em-mailer-prefs.c @@ -1148,11 +1148,11 @@ em_mailer_prefs_construct (EMMailerPrefs *prefs, /* date/time format */ table = e_builder_get_widget (prefs->builder, "datetime_format_table"); - e_datetime_format_add_setup_widget (table, 0, "mail", "header", DTFormatKindDateTime, _("Date header:")); - e_datetime_format_add_setup_widget (table, 1, "mail", "table", DTFormatKindDateTime, _("Table column:")); + e_datetime_format_add_setup_widget (table, 0, "mail", "table", DTFormatKindDateTime, _("_Table column:")); + e_datetime_format_add_setup_widget (table, 1, "mail", "header", DTFormatKindDateTime, _("_Date header:")); widget = gtk_check_button_new_with_mnemonic (_("Show _original header value")); gtk_widget_show (widget); - gtk_table_attach ((GtkTable *) table, widget, 0, 3, 1, 2, GTK_EXPAND | GTK_FILL, 0, 12, 0); + gtk_table_attach ((GtkTable *) table, widget, 0, 3, 2, 3, GTK_EXPAND | GTK_FILL, 0, 12, 0); e_mutual_binding_new ( shell_settings, "mail-show-real-date", widget, "active"); |