From dff74ce8b40b80a74ee856b4e3609101004085e5 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Thu, 14 Nov 2024 03:11:06 +0000 Subject: [PATCH] Add key event handler for keyboard --- itemcontroller.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/itemcontroller.lua b/itemcontroller.lua index 22c98a0..4d94a24 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -480,6 +480,19 @@ local PAGES = { local keyboardList = Padding:new{ onClick = ignoreClick, + onKey = function(elem, keyCode, held) + if keyCode == keys.backspace then + pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1)) + pageState.reloadState() + return true + end + return false + end, + onChar = function(elem, charCode) + pageState.filter = pageState.filter..charCode + pageState.reloadState() + return true + end, bgColor = KEYBOARD_BG_COLOR, left = KEYBOARD_HPAD, right = KEYBOARD_HPAD,