Forráskód Böngészése

Merge pull request #107108 from Meorge/feat/what-is-fuzzy

Describe "Fuzzy Search" in Quick Open tooltip
Rémi Verschelde 3 hónapja
szülő
commit
1dc398885a
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      editor/gui/editor_quick_open_dialog.cpp

+ 1 - 1
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);