From f8121a0727b4137dbf21f5881490080184ab102c Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 20:18:32 +0200 Subject: [PATCH] Use proper element array --- itemcontroller.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 553d484..2421133 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -265,7 +265,7 @@ local PAGES = { local pageState = state:currentPageState({ sortMode = 1, filter = "", - displayKeyboard = false, + displayKeyboard = Visibility.INVISIBLE, currentPage = 1 }) @@ -544,14 +544,14 @@ local PAGES = { for _,line in ipairs(keyboardLines.lines) do local keyLineList = charInputKeyList(line[1], line.backspace) keyboardWidth = math.max(keyboardWidth, keyLineList:getWidth()) - table.insert(keyboardLines, keyLineList) + table.insert(keyboardLines.elements, keyLineList) end - table.insert(keyboardLines, 1, Text:new{ id = ID_FILTER_DISPLAY, text = "" }) + table.insert(keyboardLines.elements, 1, Text:new{ id = ID_FILTER_DISPLAY, text = "" }) - local keyboardList = Padding:new{ bgColor = colors.black, left = KEYBOARD_HPAD, right = KEYBOARD_HPAD, element = List:new{ + local keyboardList = Padding:new{ bgColor = colors.cyan, left = KEYBOARD_HPAD, right = KEYBOARD_HPAD, element = List:new{ [Orientation:getId()] = Orientation.Vertical, - [Children:getId()] = keyboardLines + [Children:getId()] = keyboardLines.elements }} local screenContainer = Container:new{