Revision: 2143 http://geany.svn.sourceforge.net/geany/?rev=2143&view=rev Author: ntrel Date: 2008-01-02 08:23:32 -0800 (Wed, 02 Jan 2008)
Log Message: ----------- Add mnemonics for Find All, Replace All expanders in dialogs. Fix Find dialog mnemonic conflict _f.
Modified Paths: -------------- trunk/ChangeLog trunk/src/search.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2008-01-02 13:42:22 UTC (rev 2142) +++ trunk/ChangeLog 2008-01-02 16:23:32 UTC (rev 2143) @@ -6,6 +6,9 @@ Use documents->open_files() as it's more efficient when opening multiple files and existing files are open for filetypes with typename colouring. + * src/search.c: + Add mnemonics for Find All, Replace All expanders in dialogs. + Fix Find dialog mnemonic conflict _f.
2007-12-30 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/search.c =================================================================== --- trunk/src/search.c 2008-01-02 13:42:22 UTC (rev 2142) +++ trunk/src/search.c 2008-01-02 16:23:32 UTC (rev 2143) @@ -338,7 +338,7 @@ add_find_checkboxes(GTK_DIALOG(widgets.find_dialog)));
// Now add the multiple match options - exp = gtk_expander_new(_("Find All")); + exp = gtk_expander_new_with_mnemonic(_("_Find All")); bbox = gtk_hbutton_box_new();
button = gtk_button_new_with_mnemonic(_("_Mark")); @@ -434,7 +434,7 @@ label_find = gtk_label_new_with_mnemonic(_("_Search for:")); gtk_misc_set_alignment(GTK_MISC(label_find), 0, 0.5);
- label_replace = gtk_label_new_with_mnemonic(_("Re_place with:")); + label_replace = gtk_label_new_with_mnemonic(_("Replace wit_h:")); gtk_misc_set_alignment(GTK_MISC(label_replace), 0, 0.5);
entry_find = gtk_combo_box_entry_new_text(); @@ -481,7 +481,7 @@ add_find_checkboxes(GTK_DIALOG(widgets.replace_dialog)));
// Now add the multiple replace options - exp = gtk_expander_new(_("Replace All")); + exp = gtk_expander_new_with_mnemonic(_("Re_place All")); bbox = gtk_hbutton_box_new();
button = gtk_button_new_with_mnemonic(_("In Se_lection")); @@ -610,7 +610,7 @@ g_object_unref(G_OBJECT(size_group)); // auto destroy the size group
rbox = gtk_vbox_new(FALSE, 0); - rbtn = gtk_radio_button_new_with_mnemonic(NULL, _("_Fixed strings")); + rbtn = gtk_radio_button_new_with_mnemonic(NULL, _("Fixed s_trings")); // Make fixed strings the default to speed up searching all files in directory. gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(rbtn), TRUE); g_object_set_data_full(G_OBJECT(widgets.find_in_files_dialog), "radio_fgrep",
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.