diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-03-23 21:15:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-23 21:15:39 -0700 |
commit | 05372773e172832a750bf98278d5f816d613c92d (patch) | |
tree | 224cbb37eab2a3595d5d024b2d63dab7e6ecb679 /editor/plugins/bone_map_editor_plugin.cpp | |
parent | 9a8fb26d914192ed0d622614e746a6eb68f5c4f1 (diff) | |
parent | 8cd1ebbd6da7505bfa8a32b1e3c2d0fe5810dba2 (diff) | |
download | redot-engine-05372773e172832a750bf98278d5f816d613c92d.tar.gz |
Merge pull request #89599 from timothyqiu/vegetate
Fix unexpected auto translation of editor `Tree` content
Diffstat (limited to 'editor/plugins/bone_map_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/bone_map_editor_plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/bone_map_editor_plugin.cpp b/editor/plugins/bone_map_editor_plugin.cpp index d8c020eb29..e80f299f42 100644 --- a/editor/plugins/bone_map_editor_plugin.cpp +++ b/editor/plugins/bone_map_editor_plugin.cpp @@ -173,6 +173,7 @@ void BonePicker::create_editors() { add_child(vbox); bones = memnew(Tree); + bones->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED); bones->set_select_mode(Tree::SELECT_SINGLE); bones->set_v_size_flags(Control::SIZE_EXPAND_FILL); bones->set_hide_root(true); |