diff options
author | tpart <tpart120@proton.me> | 2024-10-13 12:27:53 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-10-13 12:27:53 +0200 |
commit | 605928c65aa2b245d17410e4415a8f22a2595fae (patch) | |
tree | f237ffc29f04e1009d5b91554bd53f9662334576 | |
parent | f8bbf21a63f05049b1a0aa13b14acd8e1057bc5e (diff) | |
download | hurrycurry-605928c65aa2b245d17410e4415a8f22a2595fae.tar hurrycurry-605928c65aa2b245d17410e4415a8f22a2595fae.tar.bz2 hurrycurry-605928c65aa2b245d17410e4415a8f22a2595fae.tar.zst |
Fix focus in popup menu by adding missing super()
-rw-r--r-- | client/menu/popup.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/menu/popup.gd b/client/menu/popup.gd index 5b3a60ac..f087600b 100644 --- a/client/menu/popup.gd +++ b/client/menu/popup.gd @@ -29,3 +29,4 @@ func _ready(): button_container.add_child(i) i.pressed.connect(exit) message.text = setup.text + super() |