From e788002b3743686d41ce2ac5f38e10c92078f4b8 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 25 Oct 2024 23:51:41 +0200 Subject: [PATCH] Fix keyboard padding issue --- itemcontroller.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 30ccff1..19c419f 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -417,7 +417,7 @@ local PAGES = { } local function charInputKeyList(chars, backspace) - local keys = { Element:new{ id = "LPAD", bgColor = colors.cyan, width = 0 } } + local keys = { } for i=1,#chars do local key = chars:sub(i, i) -- ((not backspace) and i == #keys and 0) or 1 @@ -459,10 +459,7 @@ local PAGES = { table.insert(keyboardLines.elements, keyLineList) end - for _,line in ipairs(keyboardLines.elements) do - local pad = line:findById("LPAD") - pad:setWidth(keyboardWidth - (KEYBOARD_HPAD * 2) - line:getWidth()) - end + -- TODO: Pad elements properly table.insert(keyboardLines.elements, 1, Text:new{ id = ID_FILTER_DISPLAY })