diff --git a/itemcontroller.lua b/itemcontroller.lua index f5454a0..30ccff1 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -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])