Fix substring indexing

This commit is contained in:
Gabriel Tofvesson 2024-10-14 11:27:59 +02:00
parent 3e5e46cb74
commit 33e0e54477

View File

@ -345,7 +345,7 @@ local PAGES = {
filter = filter:lower()
str = str:lower()
for i=1,#str do
if str:sub(i,1) == filter:sub(cur,1) then
if str:sub(i,i) == filter:sub(cur,cur) then
cur = cur + 1
if cur > #filter then
return true
@ -543,7 +543,7 @@ local PAGES = {
local function charInputKeyList(chars, backspace)
local keys = {}
for i=1,#chars do
local key = chars:sub(i, 1)
local key = chars:sub(i, i)
-- ((not backspace) and i == #keys and 0) or 1
table.insert(keys, Padding:new{ bgColor = colors.black, right = 0, element = Text:new{
id = key,
@ -643,7 +643,7 @@ local PAGES = {
local keyboardWidth = keyboardList:getWidth()
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 filterDisplayedText = #pageState.filter < keyboardWidth and pageState.filter or pageState.filter:sub(#pageState.filter - keyboardWidth + 1)
local filterText = keyboardList:findById(ID_FILTER_DISPLAY)
filterText:setText(filterDisplayedText)
filterText:setX(math.floor((keyboardWidth - #filterDisplayedText) / 2))
@ -656,7 +656,7 @@ local PAGES = {
for _,line in ipairs(keyboardLines.lines) do
for i=1,#line[1] do
local key = line[1]:sub(i, 1)
local key = line[1]:sub(i, i)
keyboardList:findById(key):setOnClick(function()
pageState.filter = pageState.filter..key
reloadState()