Fix crash when switching main screen from a disabled plugin main screen if code editor is floating.

This commit is contained in:
Daylily-Zeleen 2024-05-01 15:05:56 +08:00
parent d282e4f0e6
commit 5c133f5432

View file

@ -3486,6 +3486,10 @@ void EditorNode::remove_editor_plugin(EditorPlugin *p_editor, bool p_config_chan
}
}
if (singleton->editor_plugin_screen == p_editor) {
singleton->editor_plugin_screen = nullptr;
}
singleton->editor_table.erase(p_editor);
}
p_editor->make_visible(false);