From f06a97953639fb7faec59880606b61a15ded2447 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 9 Oct 2024 06:21:07 +0200 Subject: [PATCH] Place text in freeform container --- itemcontroller.lua | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 982ec00..c68501f 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -5,6 +5,7 @@ local Text = require("gfx.text") local List = require("gfx.list") local Event = require("gfx.event") local Padding = require("gfx.padding") +local Container = require("gfx.container") local CACHE_FILE = "/.storage.cache" @@ -245,7 +246,7 @@ local PAGES = { pageState.stacks = ItemGroup.collectStacks(state.controller:find(function(stack) return not stack:isEmpty() end)) - + table.sort(pageState.stacks, function(a, b) return a:getItemCount() > b:getItemCount() end) end @@ -307,8 +308,17 @@ local PAGES = { bottom = 1, element = title } + + local stuffContainer = Container:new{ + children = { + paddedTitle + }, + width = state.width, + height = state.height, + parent = state.monitor + } - return renderDefault(state, paddedTitle) + return renderDefault(state, stuffContainer) end, REQUEST = function(state, newPage)