diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-02-14 21:10:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-14 21:10:38 +0100 |
| commit | d02db6306ebcb57296dece3e8d990ae188b39aad (patch) | |
| tree | 880627af652df9f6061bbc8537c894c25ea57bd1 /editor/editor_node.cpp | |
| parent | 620813283436386096c2e4e66dbe46a73e347571 (diff) | |
| parent | cd1d7294d8d150788c8d9a19ca56038b864360a0 (diff) | |
Merge pull request #58105 from trollodel/nuke_p_editor_editor_plugin
Diffstat (limited to 'editor/editor_node.cpp')
| -rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 781b35d15b..43100ebf12 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -7033,7 +7033,7 @@ EditorNode::EditorNode() { add_editor_plugin(memnew(ControlEditorPlugin)); for (int i = 0; i < EditorPlugins::get_plugin_count(); i++) { - add_editor_plugin(EditorPlugins::create(i, this)); + add_editor_plugin(EditorPlugins::create(i)); } for (int i = 0; i < plugin_init_callback_count; i++) { |