Transmogs showing in reverse order
RaefWolfe opened this issue ยท 3 comments
The most recent expansion is shown at the last page, rather than the first. I also cannot find options like "no helm" when I'm at the transmogrifier.
I think the issue comes from
local function SortOrder(a, b)
if not a or not b then return end
if IsModifierKeyDown() then
return a < b
else
return a > b
end
end
It looks like naturally "newest to oldest" and "alphabetical" are reverses of each other for the purposes of "a > b" comparisons.