From c4493e349add718d09989e59a4c3947620489d61 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 15 Oct 2024 03:44:59 +0200 Subject: [PATCH] Toggle keyboard visibility --- itemcontroller.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index ba4c4f4..4b3cd6e 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -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