You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Improve description of fuzzy matching in editor settings documentation
Update doc/classes/EditorSettings.xml Co-authored-by: Micky <66727710+Mickeon@users.noreply.github.com> Update `max_fuzzy_misses` docs and "Fuzzy Search" tooltip to match `enable_fuzzy_matching` Improve examples used and remove "middle of the filename" description Apply suggestions from code review Co-authored-by: Micky <66727710+Mickeon@users.noreply.github.com> Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Update doc/classes/EditorSettings.xml Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> Improve phrasing for `enable_fuzzy_matching` description Update doc/classes/EditorSettings.xml Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Semicolons
This commit is contained in:
@@ -265,7 +265,7 @@ QuickOpenResultContainer::QuickOpenResultContainer() {
|
||||
fuzzy_search_toggle = memnew(CheckButton);
|
||||
style_button(fuzzy_search_toggle);
|
||||
fuzzy_search_toggle->set_text(TTR("Fuzzy Search"));
|
||||
fuzzy_search_toggle->set_tooltip_text(TTRC("Include inexact matches or matches starting in the middle of a filename, instead of only exact matches from the beginning."));
|
||||
fuzzy_search_toggle->set_tooltip_text(TTRC("Include approximate matches."));
|
||||
fuzzy_search_toggle->connect(SceneStringName(toggled), callable_mp(this, &QuickOpenResultContainer::_toggle_fuzzy_search));
|
||||
bottom_bar->add_child(fuzzy_search_toggle);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user