diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-10-05 13:10:07 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-10-05 13:10:07 -0400 |
commit | 797cf68fc2163c3996c44fdfc5fc9f6b6c6b6dd3 (patch) | |
tree | 46321474a44c374c0c6f8c4186986c8ea92ddeb5 /apworld/client/settings_screen.gd | |
parent | 87cf89b1961564f0daadeaedd1835a0dac01dffc (diff) | |
download | lingo2-archipelago-797cf68fc2163c3996c44fdfc5fc9f6b6c6b6dd3.tar.gz lingo2-archipelago-797cf68fc2163c3996c44fdfc5fc9f6b6c6b6dd3.tar.bz2 lingo2-archipelago-797cf68fc2163c3996c44fdfc5fc9f6b6c6b6dd3.zip |
Fix various minor client bugs
This is what we get for not running in the editor for a while!
Diffstat (limited to 'apworld/client/settings_screen.gd')
-rw-r--r-- | apworld/client/settings_screen.gd | 10 |
1 files changed, 3 insertions, 7 deletions
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(): | |||
100 | server_box.offset_top = 295.0 | 100 | server_box.offset_top = 295.0 |
101 | server_box.offset_right = 1144.0 | 101 | server_box.offset_right = 1144.0 |
102 | server_box.offset_bottom = 445.0 | 102 | server_box.offset_bottom = 445.0 |
103 | server_box.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER | 103 | server_box.alignment = HORIZONTAL_ALIGNMENT_CENTER |
104 | server_box.caret_blink = true | 104 | server_box.caret_blink = true |
105 | panel.add_child(server_box) | 105 | panel.add_child(server_box) |
106 | 106 | ||
@@ -110,7 +110,7 @@ func _ready(): | |||
110 | player_box.offset_top = 477.0 | 110 | player_box.offset_top = 477.0 |
111 | player_box.offset_right = 1144.0 | 111 | player_box.offset_right = 1144.0 |
112 | player_box.offset_bottom = 627.0 | 112 | player_box.offset_bottom = 627.0 |
113 | player_box.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER | 113 | player_box.alignment = HORIZONTAL_ALIGNMENT_CENTER |
114 | player_box.caret_blink = true | 114 | player_box.caret_blink = true |
115 | panel.add_child(player_box) | 115 | panel.add_child(player_box) |
116 | 116 | ||
@@ -120,20 +120,16 @@ func _ready(): | |||
120 | password_box.offset_top = 659.0 | 120 | password_box.offset_top = 659.0 |
121 | password_box.offset_right = 1144.0 | 121 | password_box.offset_right = 1144.0 |
122 | password_box.offset_bottom = 809.0 | 122 | password_box.offset_bottom = 809.0 |
123 | password_box.horizontal_alignment = HORIZONTAL_ALIGNMENT_CENTER | 123 | password_box.alignment = HORIZONTAL_ALIGNMENT_CENTER |
124 | password_box.caret_blink = true | 124 | password_box.caret_blink = true |
125 | panel.add_child(password_box) | 125 | panel.add_child(password_box) |
126 | 126 | ||
127 | var accept_dialog = AcceptDialog.new() | 127 | var accept_dialog = AcceptDialog.new() |
128 | accept_dialog.name = "AcceptDialog" | 128 | accept_dialog.name = "AcceptDialog" |
129 | accept_dialog.offset_right = 83.0 | ||
130 | accept_dialog.offset_bottom = 58.0 | ||
131 | panel.add_child(accept_dialog) | 129 | panel.add_child(accept_dialog) |
132 | 130 | ||
133 | var version_mismatch = ConfirmationDialog.new() | 131 | var version_mismatch = ConfirmationDialog.new() |
134 | version_mismatch.name = "VersionMismatch" | 132 | version_mismatch.name = "VersionMismatch" |
135 | version_mismatch.offset_right = 83.0 | ||
136 | version_mismatch.offset_bottom = 58.0 | ||
137 | panel.add_child(version_mismatch) | 133 | panel.add_child(version_mismatch) |
138 | 134 | ||
139 | var connection_history = MenuButton.new() | 135 | var connection_history = MenuButton.new() |