From d606eccc15abd5bacda60887368207aa5e3d92b5 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 20:13:12 +0200 Subject: [PATCH] Use proper setPos syntax --- itemcontroller.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 35ca581..553d484 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -617,10 +617,7 @@ local PAGES = { ---@diagnostic disable-next-line: redefined-local local keyboardWidth = keyboardList:getWidth() - keyboardList:setPos{ - x = math.floor((screenContainer:getWidth() - keyboardWidth) / 2), - y = screenContainer:getHeight() - keyboardList:getHeight() - } + keyboardList:setPos(math.floor((screenContainer:getWidth() - keyboardWidth) / 2), screenContainer:getHeight() - keyboardList:getHeight()) local filterDisplayedText = #pageState.filter < keyboardWidth and pageState.filter or pageState.filter:sub(#pageState.filter - keyboardWidth + 1, keyboardWidth) local filterText = keyboardList:findById(ID_FILTER_DISPLAY)