Enter key clears search filter
This commit is contained in:
parent
3ef0bd371d
commit
7837ed573a
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user