diff options
author | Logan <logan@cflip.net> | 2023-02-01 17:47:16 -0700 |
---|---|---|
committer | Logan <logan@cflip.net> | 2023-02-01 17:47:16 -0700 |
commit | 54009bf168335050880ae16f5d456fdad0defc78 (patch) | |
tree | 1632927bfc01f21d6fdc4e54f909729bb055eb71 /scripts/optionsmenu.gd | |
parent | dd91a66238b1df039321c9a11e7c038e50b45c21 (diff) |
Configured theme file and made small changes to UI
Diffstat (limited to 'scripts/optionsmenu.gd')
-rw-r--r-- | scripts/optionsmenu.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/optionsmenu.gd b/scripts/optionsmenu.gd index 7c6dbb9..3da0250 100644 --- a/scripts/optionsmenu.gd +++ b/scripts/optionsmenu.gd @@ -37,5 +37,5 @@ func _on_VolumeSFXSlider_value_changed(value): else: global_variables.volume_sfx_enabled = true -func _on_FullscreenCheckBox_pressed(): +func _on_FullscreenCheckButton_toggled(_button_pressed): OS.window_fullscreen = !OS.window_fullscreen |