From 4e59d1c51fc504acf03e4287c13b4d4a6971207d Mon Sep 17 00:00:00 2001 From: demolitions Date: Fri, 18 Mar 2016 17:07:07 +0100 Subject: [PATCH] Fix for #4014, changed to 2 instead of 3 chars to trigger search --- tools/editor/editor_help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/editor/editor_help.cpp b/tools/editor/editor_help.cpp index 238b2d1cb88..7a8805a5a10 100644 --- a/tools/editor/editor_help.cpp +++ b/tools/editor/editor_help.cpp @@ -92,7 +92,7 @@ void EditorHelpSearch::_update_search() { DocData *doc=EditorHelp::get_doc_data(); String term = search_box->get_text(); - if (term.length()<3) + if (term.length()<2) return; TreeItem *root = search_options->create_item();