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/history_dock.cpp | |
parent | 6f805dee2a0d9d23a8365de0331479c8846bf298 (diff) | |
download | redot-engine-7b42c245509d1b4c325ff073cb9ef2011000dea7.tar.gz |
Make auto translation inheritable
Diffstat (limited to 'editor/history_dock.cpp')
-rw-r--r-- | editor/history_dock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/history_dock.cpp b/editor/history_dock.cpp index 6ec240fdf0..7375abb65a 100644 --- a/editor/history_dock.cpp +++ b/editor/history_dock.cpp @@ -248,7 +248,7 @@ HistoryDock::HistoryDock() { global_history_checkbox->connect("toggled", callable_mp(this, &HistoryDock::refresh_history).unbind(1)); action_list = memnew(ItemList); - action_list->set_auto_translate(false); + action_list->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED); add_child(action_list); action_list->set_v_size_flags(Control::SIZE_EXPAND_FILL); action_list->connect("item_selected", callable_mp(this, &HistoryDock::seek_history)); |