Skip to content

Commit 1dc3988

Browse files
committed
Merge pull request godotengine#107108 from Meorge/feat/what-is-fuzzy
Describe "Fuzzy Search" in Quick Open tooltip
2 parents 1e9200d + 24a1d2d commit 1dc3988

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/gui/editor_quick_open_dialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ QuickOpenResultContainer::QuickOpenResultContainer() {
265265
fuzzy_search_toggle = memnew(CheckButton);
266266
style_button(fuzzy_search_toggle);
267267
fuzzy_search_toggle->set_text(TTR("Fuzzy Search"));
268-
fuzzy_search_toggle->set_tooltip_text(TTR("Enable fuzzy matching"));
268+
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."));
269269
fuzzy_search_toggle->connect(SceneStringName(toggled), callable_mp(this, &QuickOpenResultContainer::_toggle_fuzzy_search));
270270
bottom_bar->add_child(fuzzy_search_toggle);
271271

0 commit comments

Comments
 (0)