summaryrefslogtreecommitdiff
path: root/modules/openxr/editor/openxr_action_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-01-16 09:24:50 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-01-16 09:24:50 +0100
commitda57e0059e8f62a0863675a973e19af51e5359bf (patch)
tree0c49bbbc4f89ca797c223c723234dcab0b12fc6d /modules/openxr/editor/openxr_action_editor.cpp
parent6a487cc243a2fb73cf2a4ee14c5b1d9ca5847b0f (diff)
parentb58111588a62fcdd238f93129cd48a1dbb1d5237 (diff)
Merge pull request #70504 from KoBeWi/the_choosen_antipattern
Add EditorUndoRedoManager singleton
Diffstat (limited to 'modules/openxr/editor/openxr_action_editor.cpp')
-rw-r--r--modules/openxr/editor/openxr_action_editor.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/openxr/editor/openxr_action_editor.cpp b/modules/openxr/editor/openxr_action_editor.cpp
index e3fe06c6f7..586b0b0697 100644
--- a/modules/openxr/editor/openxr_action_editor.cpp
+++ b/modules/openxr/editor/openxr_action_editor.cpp
@@ -29,7 +29,6 @@
/**************************************************************************/
#include "openxr_action_editor.h"
-#include "editor/editor_node.h"
void OpenXRActionEditor::_bind_methods() {
ClassDB::bind_method(D_METHOD("_do_set_name", "name"), &OpenXRActionEditor::_do_set_name);
@@ -125,7 +124,7 @@ void OpenXRActionEditor::_on_remove_action() {
}
OpenXRActionEditor::OpenXRActionEditor(Ref<OpenXRAction> p_action) {
- undo_redo = EditorNode::get_undo_redo();
+ undo_redo = EditorUndoRedoManager::get_singleton();
action = p_action;
set_h_size_flags(Control::SIZE_EXPAND_FILL);