From b58111588a62fcdd238f93129cd48a1dbb1d5237 Mon Sep 17 00:00:00 2001 From: kobewi Date: Fri, 23 Dec 2022 23:53:16 +0100 Subject: Add EditorUndoRedoManager singleton --- editor/plugins/cast_2d_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor/plugins/cast_2d_editor_plugin.cpp') diff --git a/editor/plugins/cast_2d_editor_plugin.cpp b/editor/plugins/cast_2d_editor_plugin.cpp index 078198e64b..723082c293 100644 --- a/editor/plugins/cast_2d_editor_plugin.cpp +++ b/editor/plugins/cast_2d_editor_plugin.cpp @@ -77,7 +77,7 @@ bool Cast2DEditor::forward_canvas_gui_input(const Ref &p_event) { return false; } } else if (pressed) { - Ref &undo_redo = EditorNode::get_undo_redo(); + EditorUndoRedoManager *undo_redo = EditorUndoRedoManager::get_singleton(); undo_redo->create_action(TTR("Set target_position")); undo_redo->add_do_property(node, "target_position", target_position); undo_redo->add_do_method(canvas_item_editor, "update_viewport"); -- cgit v1.2.3