summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-08-29 12:10:32 +0200
committerkobewi <kobewi4e@gmail.com>2022-11-02 17:51:58 +0100
commit15831e381bdfc1d086e1d7dca0d501e4c8dcf4d5 (patch)
tree59910e5dac3361ebb564ea464a0f0f219203221f /editor/editor_data.cpp
parent604abb434f6740935be669dc8152856412d9ca73 (diff)
downloadredot-engine-15831e381bdfc1d086e1d7dca0d501e4c8dcf4d5.tar.gz
Unify usage of undo_redo in editor
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r--editor/editor_data.cpp2
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);
}