Enter key clears search filter
This commit is contained in:
parent
3ef0bd371d
commit
7837ed573a
@ -489,6 +489,10 @@ local PAGES = {
|
|||||||
pageState.reloadState()
|
pageState.reloadState()
|
||||||
end
|
end
|
||||||
return true
|
return true
|
||||||
|
elseif keyCode == keys.enter then
|
||||||
|
pageState.filter = ""
|
||||||
|
pageState.reloadState()
|
||||||
|
return true
|
||||||
end
|
end
|
||||||
return false
|
return false
|
||||||
end,
|
end,
|
||||||
@ -838,6 +842,29 @@ local PAGES = {
|
|||||||
return Text:new{ id = text, text = text }
|
return Text:new{ id = text, text = text }
|
||||||
end
|
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 PADDING_RQC_H = 1
|
||||||
local paddedRequestCount = Padding:new{
|
local paddedRequestCount = Padding:new{
|
||||||
top = 3,
|
top = 3,
|
||||||
@ -889,28 +916,9 @@ local PAGES = {
|
|||||||
Padding:new{
|
Padding:new{
|
||||||
top = 0,
|
top = 0,
|
||||||
bottom = 0,
|
bottom = 0,
|
||||||
left = math.floor((state.width - 12)/2),
|
left = rButtonsLeft,
|
||||||
right = math.ceil((state.width - 12)/2),
|
right = rButtonsRight,
|
||||||
element = List:new{
|
element = requestButtons
|
||||||
[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),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user