[gnome-builder] no word boundary restrictions from the search box



commit d7f7fd4d9a59cf4ef540e2135114ec5d36ffbfaf
Author: Christian Hergert <christian hergert me>
Date:   Thu Mar 19 20:36:58 2015 -0700

    no word boundary restrictions from the search box

 src/editor/gb-editor-frame-actions.c |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/src/editor/gb-editor-frame-actions.c b/src/editor/gb-editor-frame-actions.c
index 5214f8f..6b236e7 100644
--- a/src/editor/gb-editor-frame-actions.c
+++ b/src/editor/gb-editor-frame-actions.c
@@ -43,8 +43,7 @@ gb_editor_frame_actions_next_search_result (GSimpleAction *action,
 
   g_assert (GB_IS_EDITOR_FRAME (self));
 
-  g_signal_emit_by_name (self->source_view, "move-search",
-                         GTK_DIR_DOWN, FALSE, FALSE, TRUE);
+  g_signal_emit_by_name (self->source_view, "move-search", GTK_DIR_DOWN, FALSE, FALSE, FALSE);
 }
 
 static void
@@ -56,8 +55,7 @@ gb_editor_frame_actions_previous_search_result (GSimpleAction *action,
 
   g_assert (GB_IS_EDITOR_FRAME (self));
 
-  g_signal_emit_by_name (self->source_view, "move-search",
-                         GTK_DIR_UP, FALSE, FALSE, TRUE);
+  g_signal_emit_by_name (self->source_view, "move-search", GTK_DIR_UP, FALSE, FALSE, FALSE);
 }
 
 static const GActionEntry GbEditorFrameActions[] = {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]