[geany/geany] 91d0ed: Find in Files: start search when pressing return in all field

Colomban Wendling git-noreply at xxxxx
Thu Aug 14 15:12:58 UTC 2014


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Thu, 14 Aug 2014 15:12:58 UTC
Commit:      91d0ed218341e6e0c7c9eb47f2f8fa8846b0a806
             https://github.com/geany/geany/commit/91d0ed218341e6e0c7c9eb47f2f8fa8846b0a806

Log Message:
-----------
Find in Files: start search when pressing return in all field

Patch partly from Yosef Or Boczko, thanks.  Closes #959.


Modified Paths:
--------------
    src/search.c

Modified: src/search.c
2 lines changed, 2 insertions(+), 0 deletions(-)
===================================================================
@@ -926,6 +926,7 @@ static void create_fif_dialog(void)
 	dir_combo = gtk_combo_box_text_new_with_entry();
 	entry = gtk_bin_get_child(GTK_BIN(dir_combo));
 	ui_entry_add_clear_icon(GTK_ENTRY(entry));
+	gtk_entry_set_activates_default(GTK_ENTRY(entry), TRUE);
 	gtk_label_set_mnemonic_widget(GTK_LABEL(label1), entry);
 	gtk_entry_set_width_chars(GTK_ENTRY(entry), 50);
 	fif_dlg.dir_combo = dir_combo;
@@ -1004,6 +1005,7 @@ static void create_fif_dialog(void)
 
 	entry_extra = gtk_entry_new();
 	ui_entry_add_clear_icon(GTK_ENTRY(entry_extra));
+	gtk_entry_set_activates_default(GTK_ENTRY(entry_extra), TRUE);
 	gtk_widget_set_sensitive(entry_extra, FALSE);
 	gtk_widget_set_tooltip_text(entry_extra, _("Other options to pass to Grep"));
 	ui_hookup_widget(fif_dlg.dialog, entry_extra, "entry_extra");



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list