From 0f18f97cfaed3900e444d16e665b2fbe8b319ac7 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 26 Oct 2024 01:00:53 +0200 Subject: [PATCH] Align filter text to end of text --- itemcontroller.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index ebca403..c94731f 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -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)