Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.x] Resolve issue where the Godot app remains stuck when resuming. #51584

Merged

Commits on Aug 13, 2021

  1. Resolve issue where the Godot app remains stuck when resuming.

    This was caused by the fact that a new instance of Godot was created at resume while a previous instance already existed.
    The previous instance would then go through its cleanup lifecycle, and would thus attempt to close the entire app, leading to the system to restart the app, thus starting the cycle anew.
    The fix involves reusing the previous instance of Godot if one is available instead of creating a new one, as well as giving control to the host activity for how the process should be terminated.
    m4gr3d committed Aug 13, 2021
    Configuration menu
    Copy the full SHA
    874aa17 View commit details
    Browse the repository at this point in the history