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