From 24a1d2d11c6db741ec8564831add64b8e20e1a6d Mon Sep 17 00:00:00 2001 From: Malcolm Anderson Date: Tue, 3 Jun 2025 22:43:21 -0700 Subject: [PATCH] Provide a description of fuzzy search Update editor/gui/editor_quick_open_dialog.cpp Co-authored-by: Tomasz Chabora --- editor/gui/editor_quick_open_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/gui/editor_quick_open_dialog.cpp b/editor/gui/editor_quick_open_dialog.cpp index f33ea093d8..f1fcc77607 100644 --- a/editor/gui/editor_quick_open_dialog.cpp +++ b/editor/gui/editor_quick_open_dialog.cpp @@ -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(TTR("Enable fuzzy matching")); + 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->connect(SceneStringName(toggled), callable_mp(this, &QuickOpenResultContainer::_toggle_fuzzy_search)); bottom_bar->add_child(fuzzy_search_toggle);