mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
Don't set editor_hint true for project manager
Due to this setting several callbacks get initialized but never used. For instance void discoverer_callback(). This callback only initializes the GDNativeSingletonDiscover *discoverer when called. This doesn't happen in project manager and this in turn causes a call to memdelete(NULL) which is invalid. This also seems to speed up startup a little. This fixes #11043 and fixes #10992
This commit is contained in:
parent
5f39f3a2df
commit
390a2025fe
@ -465,7 +465,7 @@ void ProjectManager::_notification(int p_what) {
|
||||
|
||||
if (p_what == NOTIFICATION_ENTER_TREE) {
|
||||
|
||||
Engine::get_singleton()->set_editor_hint(true);
|
||||
Engine::get_singleton()->set_editor_hint(false);
|
||||
|
||||
} else if (p_what == NOTIFICATION_VISIBILITY_CHANGED) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user