From f533382022e87e3b38fe15894426e36d5a3af249 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 26 Oct 2024 00:11:04 +0200 Subject: [PATCH] Fix filter text display --- itemcontroller.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 19c419f..35966c7 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -463,7 +463,7 @@ local PAGES = { table.insert(keyboardLines.elements, 1, Text:new{ id = ID_FILTER_DISPLAY }) - local keyboardList = Padding:new{ bgColor = colors.cyan, left = KEYBOARD_HPAD, right = KEYBOARD_HPAD, element = List:new{ + local keyboardList = Padding:new{ bgColor = colors.gray, left = KEYBOARD_HPAD, right = KEYBOARD_HPAD, element = List:new{ bgColor = colors.cyan, [Orientation:getId()] = Orientation.VERTICAL, [Children:getId()] = keyboardLines.elements @@ -538,10 +538,10 @@ local PAGES = { local keyboardWidth = keyboardList:getWidth() keyboardList:setPos(math.floor((screenContainer:getWidth() - keyboardWidth) / 2), screenContainer:getHeight() - keyboardList:getHeight() - bottomBarList:getHeight()) - local filterDisplayedText = #pageState.filter < keyboardWidth and pageState.filter or pageState.filter:sub(#pageState.filter - keyboardWidth + 1) + local filterDisplayedText = fitText(pageState.filter, keyboardList:getWidth() - 2) local filterText = keyboardList:findById(ID_FILTER_DISPLAY) filterText:setText(filterDisplayedText) - filterText:setX(math.floor((keyboardWidth - #filterDisplayedText) / 2)) + filterText:setX(1) keyboardList:setVisible(pageState.displayKeyboard)