Toggle keyboard visibility

This commit is contained in:
Gabriel Tofvesson 2024-10-15 03:44:59 +02:00
parent 4bfe62633d
commit c4493e349a

View File

@ -148,7 +148,7 @@ local PAGES = {
local pageState = state:currentPageState({
sortMode = 1,
filter = "",
displayKeyboard = true,
displayKeyboard = false,
currentPage = 1
})
@ -571,7 +571,7 @@ local PAGES = {
keyboardButton:setOnClick(function()
Logger:debug("Toggling keyboard...")
pageState.showKeyboard = not pageState.showKeyboard
pageState.displayKeyboard = not pageState.displayKeyboard
reloadState()
return true