Merge pull request #4087 from demolitions/master

Fix for #4014
This commit is contained in:
Rémi Verschelde 2016-03-18 18:18:15 +01:00
commit db81ef92b5
1 changed files with 1 additions and 1 deletions

View File

@ -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();