diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2007-12-07 01:45:37 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2007-12-07 01:45:37 +0800 |
commit | af3502a88b4959d85efde48fb2a307a952678bf9 (patch) | |
tree | 749c69e4af84d0194e3972e095a8e41510156950 /plugins | |
parent | a47ca1aa0b33e7f3b796a25a679f43e88288d223 (diff) | |
download | gsoc2013-evolution-af3502a88b4959d85efde48fb2a307a952678bf9.tar.gz gsoc2013-evolution-af3502a88b4959d85efde48fb2a307a952678bf9.tar.zst gsoc2013-evolution-af3502a88b4959d85efde48fb2a307a952678bf9.zip |
Patch from Alex Kloss <alexkloss@att.net>: Fix for bug #347328 (missing mnemonic/mnemonic conflict in GW features -> New shared folder -> Users dialog)
svn path=/trunk/; revision=34662
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/groupwise-features/ChangeLog | 9 | ||||
-rw-r--r-- | plugins/groupwise-features/properties.glade | 8 | ||||
-rw-r--r-- | plugins/groupwise-features/share-folder.c | 1 |
3 files changed, 14 insertions, 4 deletions
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog index a1aaacfd06..330ed6384d 100644 --- a/plugins/groupwise-features/ChangeLog +++ b/plugins/groupwise-features/ChangeLog @@ -1,3 +1,12 @@ +2007-12-06 Alex Kloss <alexkloss@att.net> + + ** Fix for bug #347328 + + * properties.glade: + Fix mnemonic clash over 'c', add mnemonic for 'Name' entry + * share-folder.c: (share_folder_construct): + Connect name_selector_entry and its label + 2007-11-12 indu <indu_ait@yahoo.co.in> ** Fix for bug #458515 diff --git a/plugins/groupwise-features/properties.glade b/plugins/groupwise-features/properties.glade index 93d8716612..e5ff745c0c 100644 --- a/plugins/groupwise-features/properties.glade +++ b/plugins/groupwise-features/properties.glade @@ -139,8 +139,8 @@ <child> <widget class="GtkLabel" id="label557"> <property name="visible">True</property> - <property name="label" translatable="yes">Name:</property> - <property name="use_underline">False</property> + <property name="label" translatable="yes">_Name:</property> + <property name="use_underline">True</property> <property name="use_markup">False</property> <property name="justify">GTK_JUSTIFY_LEFT</property> <property name="wrap">False</property> @@ -285,7 +285,7 @@ <child> <widget class="GtkLabel" id="label563"> <property name="visible">True</property> - <property name="label" translatable="yes">_Contacts...</property> + <property name="label" translatable="yes">Con_tacts...</property> <property name="use_underline">True</property> <property name="use_markup">False</property> <property name="justify">GTK_JUSTIFY_LEFT</property> @@ -527,7 +527,7 @@ <child> <widget class="GtkLabel" id="label564"> <property name="visible">True</property> - <property name="label" translatable="yes">_Customize notification message</property> + <property name="label" translatable="yes">C_ustomize notification message</property> <property name="use_underline">True</property> <property name="use_markup">False</property> <property name="justify">GTK_JUSTIFY_LEFT</property> diff --git a/plugins/groupwise-features/share-folder.c b/plugins/groupwise-features/share-folder.c index b6982c520d..eec5b49f42 100644 --- a/plugins/groupwise-features/share-folder.c +++ b/plugins/groupwise-features/share-folder.c @@ -728,6 +728,7 @@ share_folder_construct (ShareFolder *sf) name_selector_entry = e_name_selector_peek_section_entry (sf->name_selector, "Add User"); g_signal_connect (name_selector_entry, "changed", G_CALLBACK (addressbook_entry_changed), sf); + gtk_label_set_mnemonic_widget (GTK_LABEL (glade_xml_get_widget (sf->xml, "label557")), GTK_WIDGET (name_selector_entry)); sf->add_button = GTK_BUTTON (glade_xml_get_widget(sf->xml, "Add")); g_signal_connect((GtkWidget *) sf->add_button, "clicked", G_CALLBACK (add_clicked), sf); |