diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-05-15 20:21:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-15 20:21:32 +0200 |
commit | 9f4dbc64560cbea9722d866748d63eddb29d383f (patch) | |
tree | 4e2c2c92034e90696cc88aae4aff83fb8ab06b1f /editor/editor_node.cpp | |
parent | ce00392fc35ce639752c710094d87a4311985fb2 (diff) | |
parent | a8e9dfdcf20b549a97894ef8dfe2d9f7980a4ee5 (diff) | |
download | redot-engine-9f4dbc64560cbea9722d866748d63eddb29d383f.tar.gz |
Merge pull request #91930 from godotengine/revert-90608-editor/enable-plugin-after-adding
Revert "Enable `EditorPlugin` added by modules and GDExtensions"
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r-- | editor/editor_node.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 26110fbe51..68fcc613ee 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -3533,7 +3533,6 @@ void EditorNode::add_extension_editor_plugin(const StringName &p_class_name) { EditorPlugin *plugin = Object::cast_to<EditorPlugin>(ClassDB::instantiate(p_class_name)); singleton->editor_data.add_extension_editor_plugin(p_class_name, plugin); add_editor_plugin(plugin); - plugin->enable_plugin(); } void EditorNode::remove_extension_editor_plugin(const StringName &p_class_name) { @@ -7273,9 +7272,7 @@ EditorNode::EditorNode() { add_editor_plugin(memnew(AudioBusesEditorPlugin(audio_bus_editor))); for (int i = 0; i < EditorPlugins::get_plugin_count(); i++) { - EditorPlugin *plugin = EditorPlugins::create(i); - add_editor_plugin(plugin); - plugin->enable_plugin(); + add_editor_plugin(EditorPlugins::create(i)); } for (const StringName &extension_class_name : GDExtensionEditorPlugins::get_extension_classes()) { |