diff --git a/AltStore/Browse/BrowseViewController.swift b/AltStore/Browse/BrowseViewController.swift index a4554858..f6e702f5 100644 --- a/AltStore/Browse/BrowseViewController.swift +++ b/AltStore/Browse/BrowseViewController.swift @@ -465,7 +465,7 @@ private extension BrowseViewController let actions = sortedCategories.map { category in let state: UIAction.State = (category == self.category) ? .on : .off - let image = UIImage(systemName: category.symbolName)?.withTintColor(category.tintColor, renderingMode: .alwaysOriginal) + let image = UIImage(systemName: category.filledSymbolName)?.withTintColor(category.tintColor, renderingMode: .alwaysOriginal) return UIAction(title: category.localizedName, image: image, state: state) { _ in handler(category) }