From 2aebaf80e0b0d51e10ab43959a91b100b55d578a Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Wed, 18 Oct 2023 17:18:03 -0500 Subject: [PATCH] Updates Browse tab icon --- AltStore/TabBarController.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AltStore/TabBarController.swift b/AltStore/TabBarController.swift index 2a72d601..a93776fe 100644 --- a/AltStore/TabBarController.swift +++ b/AltStore/TabBarController.swift @@ -43,6 +43,9 @@ final class TabBarController: UITabBarController { super.viewDidLoad() + let browseNavigationController = self.viewControllers![Tab.browse.rawValue] as! UINavigationController + browseNavigationController.tabBarItem.image = UIImage(systemName: "bag") + let sourcesNavigationController = self.viewControllers![Tab.sources.rawValue] as! UINavigationController self.sourcesViewController = sourcesNavigationController.viewControllers.first as? SourcesViewController }