diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-16 09:24:50 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-16 09:24:50 +0100 |
commit | da57e0059e8f62a0863675a973e19af51e5359bf (patch) | |
tree | 0c49bbbc4f89ca797c223c723234dcab0b12fc6d /editor/history_dock.h | |
parent | 6a487cc243a2fb73cf2a4ee14c5b1d9ca5847b0f (diff) | |
parent | b58111588a62fcdd238f93129cd48a1dbb1d5237 (diff) |
Merge pull request #70504 from KoBeWi/the_choosen_antipattern
Add EditorUndoRedoManager singleton
Diffstat (limited to 'editor/history_dock.h')
-rw-r--r-- | editor/history_dock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/history_dock.h b/editor/history_dock.h index 81d1d02b79..d507f19b07 100644 --- a/editor/history_dock.h +++ b/editor/history_dock.h @@ -40,7 +40,7 @@ class EditorUndoRedoManager; class HistoryDock : public VBoxContainer { GDCLASS(HistoryDock, VBoxContainer); - Ref<EditorUndoRedoManager> ur_manager; + EditorUndoRedoManager *ur_manager; ItemList *action_list = nullptr; CheckBox *current_scene_checkbox = nullptr; |