From afe8862a279c393bd58db6ea18e953cdf5067ce7 Mon Sep 17 00:00:00 2001 From: Mario Steele Date: Mon, 9 Mar 2026 03:02:04 -0500 Subject: [PATCH] Updated FloatingMenu Changed size of Settings Window to be 1530x1000. --- UI/floating_menu.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/floating_menu.gd b/UI/floating_menu.gd index f74f48d2..4ea937fe 100644 --- a/UI/floating_menu.gd +++ b/UI/floating_menu.gd @@ -173,7 +173,7 @@ func _handle_settings() -> void: win.mode = Window.MODE_WINDOWED var pnl := SETTINGS_PANEL.instantiate() win.add_child(pnl) - win.size = Vector2i(1530,800) + win.size = Vector2i(1530,1000) win.close_requested.connect(func(): win.queue_free(); _set_win = null) win.name = "SettingsWindow" win.title = "Settings"