From c0825b4c28e2b93d19c6cfcf730725a8d522675a Mon Sep 17 00:00:00 2001 From: Mario Steele Date: Sun, 8 Mar 2026 13:22:07 -0500 Subject: [PATCH] Updated FloatingMenu Removed commented Globals.disable_mouse_passthrough(). Updated Settings Window size. --- UI/floating_menu.gd | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/UI/floating_menu.gd b/UI/floating_menu.gd index 5580b64c..f74f48d2 100644 --- a/UI/floating_menu.gd +++ b/UI/floating_menu.gd @@ -172,9 +172,8 @@ func _handle_settings() -> void: win.always_on_top = false win.mode = Window.MODE_WINDOWED var pnl := SETTINGS_PANEL.instantiate() - #Globals.disable_mouse_passthrough() win.add_child(pnl) - win.size = Vector2i(1000,800) + win.size = Vector2i(1530,800) win.close_requested.connect(func(): win.queue_free(); _set_win = null) win.name = "SettingsWindow" win.title = "Settings"