Fix keyboard padding issue

This commit is contained in:
Gabriel Tofvesson 2024-10-25 23:51:41 +02:00
parent 45112a5d66
commit e788002b37

View File

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