From 797cf68fc2163c3996c44fdfc5fc9f6b6c6b6dd3 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 5 Oct 2025 13:10:07 -0400 Subject: Fix various minor client bugs This is what we get for not running in the editor for a while! --- apworld/client/settings_screen.gd | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'apworld/client/settings_screen.gd') diff --git a/apworld/client/settings_screen.gd b/apworld/client/settings_screen.gd index b430b17..89e8b68 100644 --- a/apworld/client/settings_screen.gd +++ b/apworld/client/settings_screen.gd @@ -100,7 +100,7 @@ func _ready(): server_box.offset_top = 295.0 server_box.offset_right = 1144.0 server_box.offset_bottom = 445.0 - server_box.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + server_box.alignment = HORIZONTAL_ALIGNMENT_CENTER server_box.caret_blink = true panel.add_child(server_box) @@ -110,7 +110,7 @@ func _ready(): player_box.offset_top = 477.0 player_box.offset_right = 1144.0 player_box.offset_bottom = 627.0 - player_box.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + player_box.alignment = HORIZONTAL_ALIGNMENT_CENTER player_box.caret_blink = true panel.add_child(player_box) @@ -120,20 +120,16 @@ func _ready(): password_box.offset_top = 659.0 password_box.offset_right = 1144.0 password_box.offset_bottom = 809.0 - password_box.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER + password_box.alignment = HORIZONTAL_ALIGNMENT_CENTER password_box.caret_blink = true panel.add_child(password_box) var accept_dialog = AcceptDialog.new() accept_dialog.name = "AcceptDialog" - accept_dialog.offset_right = 83.0 - accept_dialog.offset_bottom = 58.0 panel.add_child(accept_dialog) var version_mismatch = ConfirmationDialog.new() version_mismatch.name = "VersionMismatch" - version_mismatch.offset_right = 83.0 - version_mismatch.offset_bottom = 58.0 panel.add_child(version_mismatch) var connection_history = MenuButton.new() -- cgit 1.4.1