aboutsummaryrefslogtreecommitdiff
path: root/client/gui/overlays
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2025-09-12 21:55:47 +0200
committertpart <tpart120@proton.me>2025-09-12 21:55:47 +0200
commit4261a51eae19bcc1818207ff041fa7be5fdacfda (patch)
tree62ee9a9dd531388004cba9986cede53db21f7959 /client/gui/overlays
parent538e2578032f81ea923503ec317a2b9c5a9a4c5a (diff)
downloadhurrycurry-4261a51eae19bcc1818207ff041fa7be5fdacfda.tar
hurrycurry-4261a51eae19bcc1818207ff041fa7be5fdacfda.tar.bz2
hurrycurry-4261a51eae19bcc1818207ff041fa7be5fdacfda.tar.zst
Fix hide_overlays flipped
Diffstat (limited to 'client/gui/overlays')
-rw-r--r--client/gui/overlays/overlays.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/gui/overlays/overlays.gd b/client/gui/overlays/overlays.gd
index 2ffdd372..00778cdb 100644
--- a/client/gui/overlays/overlays.gd
+++ b/client/gui/overlays/overlays.gd
@@ -17,7 +17,7 @@ extends Control
class_name Overlays
func _ready():
- Settings.hook_changed_init("ui.hide_overlays", false, func (v): visible = v)
+ Settings.hook_changed_init("ui.hide_overlays", false, func (v): visible = not v)
func _input(_event):
if Input.is_action_just_pressed("toggle_overlay"):