[gnome-builder/wip/libide-merge] no word boundary restrictions from the search box
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/libide-merge] no word boundary restrictions from the search box
- Date: Fri, 20 Mar 2015 03:38:02 +0000 (UTC)
commit 6f2c62e3d53a0f0db63d214c027aba70128b9ff0
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]