mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Fix for #4014, changed to 2 instead of 3 chars to trigger search
(cherry picked from commit 4e59d1c51f)
This commit is contained in:
committed by
Rémi Verschelde
parent
64a8fe6ad7
commit
2bc4049b9b
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user