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/export/export_template_manager.cpp | |
parent | fe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff) | |
download | redot-engine-8cd1ebbd6da7505bfa8a32b1e3c2d0fe5810dba2.tar.gz |
Fix unexpected auto translation of Tree content
Diffstat (limited to 'editor/export/export_template_manager.cpp')
-rw-r--r-- | editor/export/export_template_manager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/export/export_template_manager.cpp b/editor/export/export_template_manager.cpp index 3738521491..9fad872a3b 100644 --- a/editor/export/export_template_manager.cpp +++ b/editor/export/export_template_manager.cpp @@ -1040,6 +1040,7 @@ ExportTemplateManager::ExportTemplateManager() { installed_versions_hb->add_child(installed_label); installed_table = memnew(Tree); + installed_table->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED); installed_table->set_hide_root(true); installed_table->set_custom_minimum_size(Size2(0, 100) * EDSCALE); installed_table->set_v_size_flags(Control::SIZE_EXPAND_FILL); |