diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-03-17 16:28:18 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2024-03-18 09:31:00 +0800 |
commit | 8cd1ebbd6da7505bfa8a32b1e3c2d0fe5810dba2 (patch) | |
tree | 5bdd3aeff5a97c2993663bda879f6583558596b7 /editor/property_selector.cpp | |
parent | fe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff) | |
download | redot-engine-8cd1ebbd6da7505bfa8a32b1e3c2d0fe5810dba2.tar.gz |
Fix unexpected auto translation of Tree content
Diffstat (limited to 'editor/property_selector.cpp')
-rw-r--r-- | editor/property_selector.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/property_selector.cpp b/editor/property_selector.cpp index be5f309704..ac175d01a6 100644 --- a/editor/property_selector.cpp +++ b/editor/property_selector.cpp @@ -557,6 +557,7 @@ PropertySelector::PropertySelector() { search_box->connect("text_changed", callable_mp(this, &PropertySelector::_text_changed)); search_box->connect("gui_input", callable_mp(this, &PropertySelector::_sbox_input)); search_options = memnew(Tree); + search_options->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED); vbc->add_margin_child(TTR("Matches:"), search_options, true); set_ok_button_text(TTR("Open")); get_ok_button()->set_disabled(true); |