Read keyboard line from field

This commit is contained in:
Gabriel Tofvesson 2024-10-12 17:59:38 +02:00
parent 2afa27bdac
commit 5f8cf98b8a

View File

@ -631,8 +631,8 @@ local PAGES = {
end
for _,line in ipairs(keyboardLines.lines) do
for i=1,#line do
local key = line:sub(i, 1)
for i=1,#line[1] do
local key = line[1]:sub(i, 1)
keyboardList:findById(key):setOnClick(function()
pageState.filter = pageState.filter..key
reloadState()