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/plugins/animation_blend_space_1d_editor.cpp | |
parent | 6f805dee2a0d9d23a8365de0331479c8846bf298 (diff) | |
download | redot-engine-7b42c245509d1b4c325ff073cb9ef2011000dea7.tar.gz |
Make auto translation inheritable
Diffstat (limited to 'editor/plugins/animation_blend_space_1d_editor.cpp')
-rw-r--r-- | editor/plugins/animation_blend_space_1d_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/animation_blend_space_1d_editor.cpp b/editor/plugins/animation_blend_space_1d_editor.cpp index 92b3569c06..d52a2057af 100644 --- a/editor/plugins/animation_blend_space_1d_editor.cpp +++ b/editor/plugins/animation_blend_space_1d_editor.cpp @@ -804,7 +804,7 @@ AnimationNodeBlendSpace1DEditor::AnimationNodeBlendSpace1DEditor() { animations_menu = memnew(PopupMenu); menu->add_child(animations_menu); animations_menu->set_name("AddAnimations"); - animations_menu->set_auto_translate(false); + animations_menu->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED); animations_menu->connect("index_pressed", callable_mp(this, &AnimationNodeBlendSpace1DEditor::_add_animation_type)); open_file = memnew(EditorFileDialog); |