make start_in_fullscreen actually only apply during startup
This commit is contained in:
parent
aa40a0c6c2
commit
35b757cd22
1 changed files with 2 additions and 1 deletions
|
@ -118,7 +118,8 @@ func save_options() -> void:
|
||||||
# video setters
|
# video setters
|
||||||
func _set_fullscreen(value: bool) -> void:
|
func _set_fullscreen(value: bool) -> void:
|
||||||
fullscreen = value
|
fullscreen = value
|
||||||
OS.window_fullscreen = fullscreen
|
if Engine.get_idle_frames() == 0:
|
||||||
|
OS.window_fullscreen = fullscreen
|
||||||
|
|
||||||
func _set_window_size(value: float) -> void:
|
func _set_window_size(value: float) -> void:
|
||||||
window_size = value
|
window_size = value
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue