aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorSuman Manjunath <msuman@src.gnome.org>2007-12-05 01:13:21 +0800
committerSuman Manjunath <msuman@src.gnome.org>2007-12-05 01:13:21 +0800
commitc2d2c2fbbd58465ce877a7537b5c14802ab2f22c (patch)
tree6c7f8c699d05e5302cc4ece4d939d748335667f2 /mail
parent90ee82e5493c66db58eb4f8a312350f92c0b0b2a (diff)
downloadgsoc2013-evolution-c2d2c2fbbd58465ce877a7537b5c14802ab2f22c.tar
gsoc2013-evolution-c2d2c2fbbd58465ce877a7537b5c14802ab2f22c.tar.gz
gsoc2013-evolution-c2d2c2fbbd58465ce877a7537b5c14802ab2f22c.tar.bz2
gsoc2013-evolution-c2d2c2fbbd58465ce877a7537b5c14802ab2f22c.tar.lz
gsoc2013-evolution-c2d2c2fbbd58465ce877a7537b5c14802ab2f22c.tar.xz
gsoc2013-evolution-c2d2c2fbbd58465ce877a7537b5c14802ab2f22c.tar.zst
gsoc2013-evolution-c2d2c2fbbd58465ce877a7537b5c14802ab2f22c.zip
Patch from David Turner <cillian64@googlemail.com>: Fix for bug #347329 (missing mnemonic in 'New Folder' dialog)
svn path=/trunk/; revision=34649
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog7
-rw-r--r--mail/em-folder-selector.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 2a9866b79f..6db1ea2833 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,10 @@
+2007-12-04 David Turner <cillian64@googlemail.com>
+
+ ** Fix for bug #347329
+
+ * em-folder-selector.c: (em_folder_selector_create_new):
+ Added a mnemonic to the 'Create' button of the 'New Folder' dialog
+
2007-12-04 Alex Kloss <alexkloss@att.net>
** Fix for bug #329578
diff --git a/mail/em-folder-selector.c b/mail/em-folder-selector.c
index eb1cfa19bd..3ed037325f 100644
--- a/mail/em-folder-selector.c
+++ b/mail/em-folder-selector.c
@@ -259,7 +259,7 @@ em_folder_selector_create_new (EMFolderTree *emft, guint32 flags, const char *ti
flags &= ~EM_FOLDER_SELECTOR_CAN_CREATE;
emfs = g_object_new (em_folder_selector_get_type (), NULL);
- em_folder_selector_construct (emfs, emft, flags, title, text, _("Create"));
+ em_folder_selector_construct (emfs, emft, flags, title, text, _("C_reate"));
em_folder_tree_set_excluded(emft, EMFT_EXCLUDE_NOINFERIORS);
hbox = gtk_hbox_new (FALSE, 0);