summaryrefslogtreecommitdiffstats
path: root/editor/plugins/shader_editor_plugin.cpp
diff options
context:
space:
mode:
authorMichael Alexsander <michaelalexsander@protonmail.com>2024-01-23 18:29:45 -0300
committerMichael Alexsander <michaelalexsander@protonmail.com>2024-02-15 16:51:19 -0300
commit7b42c245509d1b4c325ff073cb9ef2011000dea7 (patch)
tree884d96d9e6aa4e7347f5e6616408e9a79d49954c /editor/plugins/shader_editor_plugin.cpp
parent6f805dee2a0d9d23a8365de0331479c8846bf298 (diff)
downloadredot-engine-7b42c245509d1b4c325ff073cb9ef2011000dea7.tar.gz
Make auto translation inheritable
Diffstat (limited to 'editor/plugins/shader_editor_plugin.cpp')
-rw-r--r--editor/plugins/shader_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/shader_editor_plugin.cpp b/editor/plugins/shader_editor_plugin.cpp
index a018ec095b..8625e468fa 100644
--- a/editor/plugins/shader_editor_plugin.cpp
+++ b/editor/plugins/shader_editor_plugin.cpp
@@ -659,7 +659,7 @@ ShaderEditorPlugin::ShaderEditorPlugin() {
window_wrapper->connect("window_visibility_changed", callable_mp(this, &ShaderEditorPlugin::_window_changed));
shader_list = memnew(ItemList);
- shader_list->set_auto_translate(false);
+ shader_list->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
shader_list->set_v_size_flags(Control::SIZE_EXPAND_FILL);
vb->add_child(shader_list);
shader_list->connect("item_selected", callable_mp(this, &ShaderEditorPlugin::_shader_selected));