From 7837ed573a1116ba8df00dca8cb7d6aa6152cb97 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Thu, 14 Nov 2024 03:47:12 +0000 Subject: [PATCH] Enter key clears search filter --- itemcontroller.lua | 52 ++++++++++++++++++++++++++-------------------- 1 file changed, 30 insertions(+), 22 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 65c38bb..041db98 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -489,6 +489,10 @@ local PAGES = { pageState.reloadState() end return true + elseif keyCode == keys.enter then + pageState.filter = "" + pageState.reloadState() + return true end return false end, @@ -838,6 +842,29 @@ local PAGES = { return Text:new{ id = text, text = text } end + local requestButtons = List:new{ + [Orientation:getId()] = Orientation.HORIZONTAL, + [Children:getId()] = { + makeRequestButton(-64), + Element:new{ width = 1 }, + makeRequestButton(-16), + Element:new{ width = 1 }, + makeRequestButton(-8), + Element:new{ width = 1 }, + makeRequestButton(-1), + Element:new{ width = 2 }, + makeRequestButton(1), + Element:new{ width = 1 }, + makeRequestButton(8), + Element:new{ width = 1 }, + makeRequestButton(16), + Element:new{ width = 1 }, + makeRequestButton(64), + } + } + + local rButtonsLeft, rButtonsRight = getCenterPad(requestButtons.getWidth(), state.width) + local PADDING_RQC_H = 1 local paddedRequestCount = Padding:new{ top = 3, @@ -889,28 +916,9 @@ local PAGES = { Padding:new{ top = 0, bottom = 0, - left = math.floor((state.width - 12)/2), - right = math.ceil((state.width - 12)/2), - element = List:new{ - [Orientation:getId()] = Orientation.HORIZONTAL, - [Children:getId()] = { - makeRequestButton(-64), - Element:new{ width = 1 }, - makeRequestButton(-16), - Element:new{ width = 1 }, - makeRequestButton(-8), - Element:new{ width = 1 }, - makeRequestButton(-1), - Element:new{ width = 2 }, - makeRequestButton(1), - Element:new{ width = 1 }, - makeRequestButton(8), - Element:new{ width = 1 }, - makeRequestButton(16), - Element:new{ width = 1 }, - makeRequestButton(64), - } - } + left = rButtonsLeft, + right = rButtonsRight, + element = requestButtons } } }