diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-07 08:14:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 08:14:30 +0100 |
commit | c2a540de51e41e1dbfc3ae8d6cfc438061e3c28d (patch) | |
tree | cfd452e50c332d3672ec95701f3dadaf3cab9f02 /editor | |
parent | 602cacae2190e2f8714b19158878d7a65c04e98d (diff) | |
parent | ee3b7bc747f2dd244d216e392535bccf5be23ca2 (diff) |
Merge pull request #57732 from KoBeWi/leftplication
Move Replication tab to a fixed position
Diffstat (limited to 'editor')
-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 bf7e463559..3ce7fefde2 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -6969,6 +6969,7 @@ EditorNode::EditorNode() { // more visually meaningful to have this later raise_bottom_panel_item(AnimationPlayerEditor::get_singleton()); + add_editor_plugin(memnew(ReplicationEditorPlugin(this))); add_editor_plugin(VersionControlEditorPlugin::get_singleton()); add_editor_plugin(memnew(ShaderEditorPlugin(this))); @@ -7022,7 +7023,6 @@ EditorNode::EditorNode() { add_editor_plugin(memnew(InputEventEditorPlugin(this))); add_editor_plugin(memnew(SubViewportPreviewEditorPlugin(this))); add_editor_plugin(memnew(TextControlEditorPlugin(this))); - add_editor_plugin(memnew(ReplicationEditorPlugin(this))); for (int i = 0; i < EditorPlugins::get_plugin_count(); i++) { add_editor_plugin(EditorPlugins::create(i, this)); |