diff options
author | nokoe <nokoe@mailbox.org> | 2024-06-26 16:39:50 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-06-26 16:39:50 +0200 |
commit | a8d17ba85a46169fa049c70e1a8f53ea97784c90 (patch) | |
tree | f84853b18396e510149b0704e7238c1c22b87e98 /client/menu/character_menu.gd | |
parent | 5654b69e4c7e0aafe258ad0ab73105722a389def (diff) | |
parent | 677b9c898b0fc3faac2aa505cce438a2b2189265 (diff) | |
download | hurrycurry-a8d17ba85a46169fa049c70e1a8f53ea97784c90.tar hurrycurry-a8d17ba85a46169fa049c70e1a8f53ea97784c90.tar.bz2 hurrycurry-a8d17ba85a46169fa049c70e1a8f53ea97784c90.tar.zst |
Merge branch 'master' of ssh://codeberg.org/metamuffin/undercooked
Diffstat (limited to 'client/menu/character_menu.gd')
-rw-r--r-- | client/menu/character_menu.gd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/menu/character_menu.gd b/client/menu/character_menu.gd index fd4e3707..3e535e71 100644 --- a/client/menu/character_menu.gd +++ b/client/menu/character_menu.gd @@ -21,9 +21,10 @@ extends Control func _ready(): $VBoxContainer/top_panel/a/username.text = Global.profile["username"] character.select_hairstyle(Global.profile["character"]) + Global.focus_first_button(self) func _on_back_pressed(): - $SceneTransition.transition_to("res://menu/main_menu.tscn") + $SceneTransition.transition_to("res://menu/menu_manager.tscn") func _on_username_text_changed(new_text): Global.profile["username"] = new_text |