diff options
Diffstat (limited to 'client/Archipelago/settings_screen.gd')
-rw-r--r-- | client/Archipelago/settings_screen.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/Archipelago/settings_screen.gd b/client/Archipelago/settings_screen.gd index f5f994b..a3bc25e 100644 --- a/client/Archipelago/settings_screen.gd +++ b/client/Archipelago/settings_screen.gd | |||
@@ -90,7 +90,7 @@ func _ready(): | |||
90 | history_box.get_popup().connect("id_pressed", historySelected) | 90 | history_box.get_popup().connect("id_pressed", historySelected) |
91 | 91 | ||
92 | # Show client version. | 92 | # Show client version. |
93 | $Panel/title.text = "ARCHIPELAGO (%s)" % ap.my_version | 93 | $Panel/title.text = "ARCHIPELAGO (%d.%d)" % [ap.MAJOR_VERSION, ap.MINOR_VERSION] |
94 | 94 | ||
95 | # Increase font size in text boxes. | 95 | # Increase font size in text boxes. |
96 | $Panel/server_box.add_theme_font_size_override("font_size", 36) | 96 | $Panel/server_box.add_theme_font_size_override("font_size", 36) |