Only refresh if filter is not empty
This commit is contained in:
parent
da30f475c9
commit
f2b6f737da
@ -447,8 +447,10 @@ local PAGES = {
|
|||||||
text = "<--",
|
text = "<--",
|
||||||
bgColor = KEYBOARD_KEY_COLOR,
|
bgColor = KEYBOARD_KEY_COLOR,
|
||||||
onClick = function()
|
onClick = function()
|
||||||
pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1))
|
if #pageState.filter > 0 then
|
||||||
pageState.reloadState()
|
pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1))
|
||||||
|
pageState.reloadState()
|
||||||
|
end
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
@ -482,8 +484,10 @@ local PAGES = {
|
|||||||
onClick = ignoreClick,
|
onClick = ignoreClick,
|
||||||
onKey = function(elem, keyCode, held)
|
onKey = function(elem, keyCode, held)
|
||||||
if keyCode == keys.backspace then
|
if keyCode == keys.backspace then
|
||||||
pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1))
|
if #pageState.filter > 0 then
|
||||||
pageState.reloadState()
|
pageState.filter = fitText(pageState.filter, math.max(0, #pageState.filter - 1))
|
||||||
|
pageState.reloadState()
|
||||||
|
end
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
return false
|
return false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user