Align filter text to end of text
This commit is contained in:
parent
f759cfe229
commit
0f18f97cfa
@ -140,11 +140,13 @@ local function getCenterPad(contentWidth, widthBudget)
|
||||
return math.floor(pad), math.ceil(pad)
|
||||
end
|
||||
|
||||
local function fitText(text, widthBudget)
|
||||
local function fitText(text, widthBudget, alignEnd)
|
||||
if #text <= widthBudget then
|
||||
return text
|
||||
end
|
||||
return text:sub(1, widthBudget)
|
||||
local textStart = alignEnd and (#text - widthBudget + 1) or 1
|
||||
local textEnd = (alignEnd and #text - textStart) or widthBudget
|
||||
return text:sub(textStart, textEnd)
|
||||
end
|
||||
|
||||
local PAGES = {
|
||||
@ -558,7 +560,7 @@ local PAGES = {
|
||||
|
||||
local keyboardInnerWidth = keyboardList:getInnerWidth()
|
||||
|
||||
local filterDisplayedText = fitText(pageState.filter, keyboardInnerWidth)
|
||||
local filterDisplayedText = fitText(pageState.filter, keyboardInnerWidth, true)
|
||||
local filterText = keyboardList:findById(ID_FILTER_DISPLAY)
|
||||
filterText:setText(filterDisplayedText)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user