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 })