From 0d90b46b971364339b2a39996bcc84bc0f3a07e7 Mon Sep 17 00:00:00 2001 From: kobewi Date: Mon, 23 Jan 2023 14:19:42 +0100 Subject: [PATCH] Fix plugins over not working --- editor/editor_node.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 19d991b112a..3fa6bdcff03 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -2112,6 +2112,7 @@ void EditorNode::edit_item(Object *p_object, Object *p_editing_owner) { } } active_plugins[owner_id].insert(plugin); + editor_plugins_over->add_plugin(plugin); plugin->edit(p_object); plugin->make_visible(true); }