From 2afa27bdac9c49f1cdbba58b5db3eb44245dcba8 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 17:58:01 +0200 Subject: [PATCH] Add missing element field --- itemcontroller.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 773752c..83b57ba 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -360,7 +360,7 @@ local PAGES = { local function tabActionButton(count) local text = count < 0 and ("<"..tostring(-count)) or (tostring(count)..">") return Padding:new{ - Text:new{ id = tostring(count), text = text } + element = Text:new{ id = tostring(count), text = text } } end