Align filter text to end of text

This commit is contained in:
Gabriel Tofvesson 2024-10-26 01:00:53 +02:00
parent f759cfe229
commit 0f18f97cfa

View File

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