From 34f31ec524d10e07cbe4470a22c93e65ab8a703d Mon Sep 17 00:00:00 2001 From: Moose <124457076+AntlerForce@users.noreply.github.com> Date: Mon, 10 Feb 2025 14:14:38 -0700 Subject: [PATCH] Simple Skirmish: Prevent Next button from going below bottom of panel --- LuaMenu/widgets/gui_battle_room_window.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LuaMenu/widgets/gui_battle_room_window.lua b/LuaMenu/widgets/gui_battle_room_window.lua index 9b50be6eb..e5d4661ee 100644 --- a/LuaMenu/widgets/gui_battle_room_window.lua +++ b/LuaMenu/widgets/gui_battle_room_window.lua @@ -2601,7 +2601,7 @@ local function InitializeSetupPage(subPanel, screenHeight, pageConfig, nextPage, name = 'nextButton', x = "36%", right = "36%", - y = 4*buttonScale + 5 + numOptions*buttonScale, + bottom = "4%", height = buttonHeight, classname = (nextPage and "action_button") or "ready_button", caption = (nextPage and "Next") or i18n("start"),