diff options
author | kobewi <kobewi4e@gmail.com> | 2022-08-29 12:10:32 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-11-02 17:51:58 +0100 |
commit | 15831e381bdfc1d086e1d7dca0d501e4c8dcf4d5 (patch) | |
tree | 59910e5dac3361ebb564ea464a0f0f219203221f /editor/editor_data.cpp | |
parent | 604abb434f6740935be669dc8152856412d9ca73 (diff) | |
download | redot-engine-15831e381bdfc1d086e1d7dca0d501e4c8dcf4d5.tar.gz |
Unify usage of undo_redo in editor
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r-- | editor/editor_data.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index 6d8f0df452..a3dd19bb67 100644 --- a/editor/editor_data.cpp +++ b/editor/editor_data.cpp @@ -457,12 +457,10 @@ Callable EditorData::get_move_array_element_function(const StringName &p_class) } void EditorData::remove_editor_plugin(EditorPlugin *p_plugin) { - p_plugin->undo_redo = Ref<EditorUndoRedoManager>(); editor_plugins.erase(p_plugin); } void EditorData::add_editor_plugin(EditorPlugin *p_plugin) { - p_plugin->undo_redo = undo_redo_manager; editor_plugins.push_back(p_plugin); } |