Search by display name too

This commit is contained in:
Gabriel Tofvesson 2024-10-25 19:08:29 +02:00
parent 798c3e4993
commit 45112a5d66

View File

@ -493,8 +493,7 @@ local PAGES = {
emptyCount = emptyCount + 1
return false
else
local name = stack:getSimpleName()
return matchFilter(pageState.filter, name) or (pageState.filter:find(":") ~= nil and matchFilter(pageState.filter, stack:getName()))
return matchFilter(pageState.filter, stack:getSimpleName()) or matchFilter(pageState.filter, stack:getDisplayName()) or (pageState.filter:find(":") ~= nil and matchFilter(pageState.filter, stack:getName()))
end
end))
table.sort(pageState.stacks, SORT_MODE[pageState.sortMode])