diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2024-01-23 18:29:45 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2024-02-15 16:51:19 -0300 |
commit | 7b42c245509d1b4c325ff073cb9ef2011000dea7 (patch) | |
tree | 884d96d9e6aa4e7347f5e6616408e9a79d49954c /editor/editor_about.cpp | |
parent | 6f805dee2a0d9d23a8365de0331479c8846bf298 (diff) | |
download | redot-engine-7b42c245509d1b4c325ff073cb9ef2011000dea7.tar.gz |
Make auto translation inheritable
Diffstat (limited to 'editor/editor_about.cpp')
-rw-r--r-- | editor/editor_about.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index 6c859ce236..9c0d474f49 100644 --- a/editor/editor_about.cpp +++ b/editor/editor_about.cpp @@ -100,7 +100,7 @@ ScrollContainer *EditorAbout::_populate_list(const String &p_name, const List<St vbc->add_child(lbl); ItemList *il = memnew(ItemList); - il->set_auto_translate(false); + il->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED); il->set_h_size_flags(Control::SIZE_EXPAND_FILL); il->set_same_column_width(true); il->set_auto_height(true); |