aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-selector.c
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2004-01-24 04:43:41 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-01-24 04:43:41 +0800
commit481af7a34f4121fcc69f09cd5dbad44602681229 (patch)
tree6b092bd3878ee6c5a54df7641ea0d5f3c40950b5 /mail/em-folder-selector.c
parent3a1139cb9e599c6990e8af314f41f85c03cf21f9 (diff)
downloadgsoc2013-evolution-481af7a34f4121fcc69f09cd5dbad44602681229.tar
gsoc2013-evolution-481af7a34f4121fcc69f09cd5dbad44602681229.tar.gz
gsoc2013-evolution-481af7a34f4121fcc69f09cd5dbad44602681229.tar.bz2
gsoc2013-evolution-481af7a34f4121fcc69f09cd5dbad44602681229.tar.lz
gsoc2013-evolution-481af7a34f4121fcc69f09cd5dbad44602681229.tar.xz
gsoc2013-evolution-481af7a34f4121fcc69f09cd5dbad44602681229.tar.zst
gsoc2013-evolution-481af7a34f4121fcc69f09cd5dbad44602681229.zip
Set the mnemonic widget for "Folder _name:"
2004-01-23 Rodney Dawes <dobey@ximian.com> * em-folder-selector.c: Set the mnemonic widget for "Folder _name:" Fixes #53088 svn path=/trunk/; revision=24387
Diffstat (limited to 'mail/em-folder-selector.c')
-rw-r--r--mail/em-folder-selector.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/em-folder-selector.c b/mail/em-folder-selector.c
index 14169c94cc..f973cc2dc3 100644
--- a/mail/em-folder-selector.c
+++ b/mail/em-folder-selector.c
@@ -263,6 +263,7 @@ em_folder_selector_create_new (EMFolderTree *emft, guint32 flags, const char *ti
w = gtk_label_new_with_mnemonic (_("Folder _name:"));
gtk_box_pack_start ((GtkBox *) hbox, w, FALSE, FALSE, 6);
emfs->name_entry = (GtkEntry *) gtk_entry_new ();
+ gtk_label_set_mnemonic_widget (GTK_LABEL (w), emfs->name_entry);
g_signal_connect (emfs->name_entry, "changed", G_CALLBACK (emfs_create_name_changed), emfs);
g_signal_connect (emfs->name_entry, "activate", G_CALLBACK (emfs_create_name_activate), emfs);
gtk_box_pack_start ((GtkBox *) hbox, (GtkWidget *) emfs->name_entry, TRUE, FALSE, 6);