Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: GitHub noreply@github.com Date: Sun, 23 Jun 2024 20:55:03 UTC Commit: 20908b843eb46fe185f32baf2fde96d0e20f70da https://github.com/geany/geany/commit/20908b843eb46fe185f32baf2fde96d0e20f70...
Log Message: ----------- Merge pull request #3823 from ntrel/msg-tree-search
[RFC] Enable keyboard searching for Compiler and Messages tree views
Modified Paths: -------------- src/msgwindow.c
Modified: src/msgwindow.c 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -236,7 +236,7 @@ static void prepare_msg_tree_view(void) "foreground-gdk", MSG_COL_COLOR, "text", MSG_COL_STRING, NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(msgwindow.tree_msg), column);
- gtk_tree_view_set_enable_search(GTK_TREE_VIEW(msgwindow.tree_msg), FALSE); + gtk_tree_view_set_search_column(GTK_TREE_VIEW(msgwindow.tree_msg), MSG_COL_STRING);
ui_widget_modify_font_from_string(msgwindow.tree_msg, interface_prefs.msgwin_font);
@@ -273,7 +273,7 @@ static void prepare_compiler_tree_view(void) "foreground-gdk", COMPILER_COL_COLOR, "text", COMPILER_COL_STRING, NULL); gtk_tree_view_append_column(GTK_TREE_VIEW(msgwindow.tree_compiler), column);
- gtk_tree_view_set_enable_search(GTK_TREE_VIEW(msgwindow.tree_compiler), FALSE); + gtk_tree_view_set_search_column(GTK_TREE_VIEW(msgwindow.tree_compiler), COMPILER_COL_STRING);
ui_widget_modify_font_from_string(msgwindow.tree_compiler, interface_prefs.msgwin_font);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).