diff options
author | demolitions <demolitions@gmail.com> | 2016-03-18 17:07:07 +0100 |
---|---|---|
committer | demolitions <demolitions@gmail.com> | 2016-03-18 17:07:07 +0100 |
commit | 4e59d1c51fc504acf03e4287c13b4d4a6971207d (patch) | |
tree | a1a2f4851066c867f6b69b90cebabc04179fef1a /tools | |
parent | 15ba4d34c5040532b7926f6cfe670d081fee79b1 (diff) |
Fix for #4014, changed to 2 instead of 3 chars to trigger search
Diffstat (limited to 'tools')
-rw-r--r-- | tools/editor/editor_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_help.cpp b/tools/editor/editor_help.cpp index 238b2d1cb8..7a8805a5a1 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(); |