aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2006-07-20 21:35:38 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2006-07-20 21:35:38 +0800
commit5a7fb3662757a78f9e6b0ab2e4ce99f3ec6b912f (patch)
tree76d6a98d50760424f2c888a6359332fce4cd5496 /widgets/misc
parent80f557d53b5e2e977aedb742e571fc4461d0cc8b (diff)
downloadgsoc2013-evolution-5a7fb3662757a78f9e6b0ab2e4ce99f3ec6b912f.tar
gsoc2013-evolution-5a7fb3662757a78f9e6b0ab2e4ce99f3ec6b912f.tar.gz
gsoc2013-evolution-5a7fb3662757a78f9e6b0ab2e4ce99f3ec6b912f.tar.bz2
gsoc2013-evolution-5a7fb3662757a78f9e6b0ab2e4ce99f3ec6b912f.tar.lz
gsoc2013-evolution-5a7fb3662757a78f9e6b0ab2e4ce99f3ec6b912f.tar.xz
gsoc2013-evolution-5a7fb3662757a78f9e6b0ab2e4ce99f3ec6b912f.tar.zst
gsoc2013-evolution-5a7fb3662757a78f9e6b0ab2e4ce99f3ec6b912f.zip
Modified the mnemonics for avoiding the conflict with attachment bar.
svn path=/trunk/; revision=32361
Diffstat (limited to 'widgets/misc')
-rw-r--r--widgets/misc/ChangeLog5
-rw-r--r--widgets/misc/e-search-bar.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog
index a8dcc07b27..03e34cc6c0 100644
--- a/widgets/misc/ChangeLog
+++ b/widgets/misc/ChangeLog
@@ -1,3 +1,8 @@
+2006-07-20 Srinivasa Ragavan <sragavan@novell.com>
+
+ * e-search-bar.c: (e_search_bar_construct): Modified
+ the mnemonics for avoiding the conflict with attachment bar.
+
2006-07-18 Andre Klapper <a9016009@gmx.de>
* e-attachment.glade:
diff --git a/widgets/misc/e-search-bar.c b/widgets/misc/e-search-bar.c
index 5b1af11ad8..9e0f6ebfa0 100644
--- a/widgets/misc/e-search-bar.c
+++ b/widgets/misc/e-search-bar.c
@@ -924,18 +924,19 @@ e_search_bar_construct (ESearchBar *search_bar,
hbox = gtk_hbox_new (FALSE, 0);
/* To Translators: The "Show: " label is followed by the Quick Search Text input field where one enters
the term to search for */
- label = gtk_label_new_with_mnemonic (_("S_earch: "));
+ label = gtk_label_new_with_mnemonic (_("Sear_ch: "));
gtk_widget_show (label);
gtk_box_pack_start (GTK_BOX(hbox), label, FALSE, FALSE, 0);
gtk_box_pack_start (GTK_BOX(hbox), search_bar->entry_box, FALSE, FALSE, 0);
gtk_widget_show (search_bar->entry_box);
+ gtk_label_set_mnemonic_widget (label, search_bar->entry);
/* Search Scope Widgets */
search_bar->scopeoption_box = gtk_hbox_new (0, FALSE);
gtk_box_set_spacing (GTK_BOX (search_bar->scopeoption_box), 3);
/* To Translators: The " in " label is part of the Quick Search Bar, example:
Search: | <user's_search_term> | in | Current Folder/All Accounts/Current Account */
- label = gtk_label_new_with_mnemonic (_(" in "));
+ label = gtk_label_new_with_mnemonic (_(" i_n "));
gtk_widget_show (label);
gtk_box_pack_start (GTK_BOX(search_bar->scopeoption_box), label, FALSE, FALSE, 0);
@@ -944,6 +945,7 @@ e_search_bar_construct (ESearchBar *search_bar,
gtk_box_pack_start (GTK_BOX(search_bar->scopeoption_box), search_bar->scopeoption, FALSE, FALSE, 0);
gtk_widget_show_all (search_bar->scopeoption_box);
gtk_widget_hide (hbox);
+ gtk_label_set_mnemonic_widget (label, search_bar->scopeoption);
gtk_box_pack_end (GTK_BOX(hbox), search_bar->scopeoption_box, FALSE, FALSE, 0);
gtk_widget_hide (search_bar->scopeoption_box);