From 7fa0861084febd9fda293062feaacff5efe068f4 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 07:40:01 +0200 Subject: [PATCH] Place buttons directly in wrapper --- itemcontroller.lua | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 5ce0be6..efbf3ae 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -572,10 +572,10 @@ local PAGES = { return true end } - - local bottomBar = List:new{ - [Orientation:getId()] = Orientation.HORIZONTAL, + -- Anchored to (1,1) + local windowWrapper = Container:new{ [Children:getId()] = { + stuffContainer, paddedButton( "Fetch", state.width / 2, @@ -610,14 +610,6 @@ local PAGES = { } } - -- Anchored to (1,1) - local windowWrapper = Container:new{ - [Children:getId()] = { - stuffContainer, - bottomBar - } - } - -- Set up event management local function updateDisplayState() @@ -661,7 +653,7 @@ local PAGES = { updateDisplayState() - return renderDefault(state, stuffContainer) + return renderDefault(state, windowWrapper) end }