1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Merge pull request #113830 from cpl-s-matsuyama/fix-gameview-settings-callback-crash-on-exit

Fix crash on quit when `settings_changed` signal is emitted during exit
This commit is contained in:
Thaddeus Crews
2025-12-10 18:10:33 -06:00

View File

@@ -507,6 +507,10 @@ void GameView::_embedded_process_focused() {
}
void GameView::_editor_or_project_settings_changed() {
if (!is_inside_tree()) {
return;
}
// Update the window size and aspect ratio.
_update_embed_window_size();