Fix keyboard padding issue
This commit is contained in:
parent
45112a5d66
commit
e788002b37
@ -417,7 +417,7 @@ local PAGES = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
local function charInputKeyList(chars, backspace)
|
local function charInputKeyList(chars, backspace)
|
||||||
local keys = { Element:new{ id = "LPAD", bgColor = colors.cyan, width = 0 } }
|
local keys = { }
|
||||||
for i=1,#chars do
|
for i=1,#chars do
|
||||||
local key = chars:sub(i, i)
|
local key = chars:sub(i, i)
|
||||||
-- ((not backspace) and i == #keys and 0) or 1
|
-- ((not backspace) and i == #keys and 0) or 1
|
||||||
@ -459,10 +459,7 @@ local PAGES = {
|
|||||||
table.insert(keyboardLines.elements, keyLineList)
|
table.insert(keyboardLines.elements, keyLineList)
|
||||||
end
|
end
|
||||||
|
|
||||||
for _,line in ipairs(keyboardLines.elements) do
|
-- TODO: Pad elements properly
|
||||||
local pad = line:findById("LPAD")
|
|
||||||
pad:setWidth(keyboardWidth - (KEYBOARD_HPAD * 2) - line:getWidth())
|
|
||||||
end
|
|
||||||
|
|
||||||
table.insert(keyboardLines.elements, 1, Text:new{ id = ID_FILTER_DISPLAY })
|
table.insert(keyboardLines.elements, 1, Text:new{ id = ID_FILTER_DISPLAY })
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user