Merge pull request #107368 from Meorge/docs/what-is-fuzzy-2

Improve description of fuzzy matching in editor settings documentation
This commit is contained in:
Rémi Verschelde 2025-06-13 18:37:30 +02:00
commit 4c5c577612
No known key found for this signature in database
GPG key ID: C3336907360768E1
2 changed files with 5 additions and 3 deletions

View file

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