From 35b757cd226697d5bf35413e3fc3011ef875aa9d Mon Sep 17 00:00:00 2001 From: Haze Weathers Date: Fri, 15 Mar 2024 15:51:18 -0400 Subject: [PATCH] make start_in_fullscreen actually only apply during startup --- autoloads/options.gd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autoloads/options.gd b/autoloads/options.gd index f7b3ba8..3084c05 100644 --- a/autoloads/options.gd +++ b/autoloads/options.gd @@ -118,7 +118,8 @@ func save_options() -> void: # video setters func _set_fullscreen(value: bool) -> void: fullscreen = value - OS.window_fullscreen = fullscreen + if Engine.get_idle_frames() == 0: + OS.window_fullscreen = fullscreen func _set_window_size(value: float) -> void: window_size = value