Fix sort mode overflow
This commit is contained in:
parent
8ed9e48dfe
commit
6777df634d
@ -274,7 +274,7 @@ local PAGES = {
|
||||
return function(a, b)
|
||||
local aRes = func(a)
|
||||
local bRes = func(b)
|
||||
return (aRes == bRes and tiebreaker ~= nil and tiebreaker(a, b)) or ((aRes > bRes) ~= invert)
|
||||
return (aRes == bRes and tiebreaker ~= nil and tiebreaker(a, b)) or ((aRes < bRes) ~= invert)
|
||||
end
|
||||
end
|
||||
|
||||
@ -701,7 +701,7 @@ local PAGES = {
|
||||
|
||||
sortButton:setOnClick(function()
|
||||
print("Reorganizing...")
|
||||
pageState.sortMode = (pageState.sortMode + 1 + #SORT_MODE) % #SORT_MODE
|
||||
pageState.sortMode = (pageState.sortMode % #SORT_MODE) + 1
|
||||
reloadState()
|
||||
return true
|
||||
end)
|
||||
|
Loading…
x
Reference in New Issue
Block a user