Enter key clears search filter

This commit is contained in:
Gabriel Tofvesson 2024-11-14 03:47:12 +00:00
parent 3ef0bd371d
commit 7837ed573a

View File

@ -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
}
}
}