From ab382e96118f91b2722146dd7c0163042bd46c73 Mon Sep 17 00:00:00 2001 From: Boby Wang Date: Mon, 20 Mar 2006 06:18:45 +0000 Subject: ** Fix for bug #268584 2006-03-20 Boby Wang ** Fix for bug #268584 * e-msg-composer-attachment.glade: * e-msg-composer-select-file.c: (get_selector): set the accelerate key for "Suggest Suggest automatic display of attachment" svn path=/trunk/; revision=31721 --- composer/ChangeLog | 9 +++++++++ composer/e-msg-composer-attachment.glade | 29 +++++++++++++++++++++++++---- composer/e-msg-composer-select-file.c | 4 ++-- 3 files changed, 36 insertions(+), 6 deletions(-) (limited to 'composer') diff --git a/composer/ChangeLog b/composer/ChangeLog index e786c66347..335f434904 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,12 @@ +2006-03-20 Boby Wang + + ** Fix for bug #268584 + + * e-msg-composer-attachment.glade: + * e-msg-composer-select-file.c: (get_selector): + set the accelerate key for "Suggest Suggest automatic display of + attachment" + 2006-02-16 Rohini S ** Fixes bug #324742 diff --git a/composer/e-msg-composer-attachment.glade b/composer/e-msg-composer-attachment.glade index dc228eef70..fc7a1a9324 100644 --- a/composer/e-msg-composer-attachment.glade +++ b/composer/e-msg-composer-attachment.glade @@ -12,6 +12,12 @@ False True False + True + False + False + GDK_WINDOW_TYPE_HINT_DIALOG + GDK_GRAVITY_NORTH_WEST + True True @@ -34,6 +40,7 @@ gtk-cancel True GTK_RELIEF_NORMAL + True -6 @@ -46,6 +53,7 @@ gtk-ok True GTK_RELIEF_NORMAL + True -5 @@ -76,7 +84,7 @@ 0 True - * + * False @@ -98,7 +106,7 @@ 0 True - * + * False @@ -123,6 +131,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -147,6 +159,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -171,6 +187,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -191,7 +211,7 @@ 0 True - * + * False @@ -207,9 +227,10 @@ True True - Suggest automatic display of attachment + _Suggest automatic display of attachment True GTK_RELIEF_NORMAL + True False False True diff --git a/composer/e-msg-composer-select-file.c b/composer/e-msg-composer-select-file.c index 3774c8949e..97b686ef7e 100644 --- a/composer/e-msg-composer-select-file.c +++ b/composer/e-msg-composer-select-file.c @@ -94,7 +94,7 @@ get_selector(struct _EMsgComposer *composer, const char *title, guint32 flags) gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (selection), path); if (flags & SELECTOR_SHOW_INLINE) { - showinline = gtk_check_button_new_with_label (_("Suggest automatic display of attachment")); + showinline = gtk_check_button_new_with_mnemonic (_("_Suggest automatic display of attachment")); gtk_widget_show (showinline); gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (selection), showinline); g_object_set_data((GObject *)selection, "show-inline", showinline); @@ -114,7 +114,7 @@ get_selector(struct _EMsgComposer *composer, const char *title, guint32 flags) } if (flags & SELECTOR_SHOW_INLINE) { - showinline = gtk_check_button_new_with_label (_("Suggest automatic display of attachment")); + showinline = gtk_check_button_new_with_mnemonic (_("_Suggest automatic display of attachment")); gtk_widget_show (showinline); gtk_box_pack_end (GTK_BOX (GTK_FILE_SELECTION (selection)->main_vbox), showinline, FALSE, FALSE, 4); g_object_set_data((GObject *)selection, "show-inline", showinline); -- cgit