From d85905ba6109cde16ec6185be141b244058d6bab 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 034ddb6f..cb4d8140 100644 --- a/AltStore/TabBarController.swift +++ b/AltStore/TabBarController.swift @@ -43,6 +43,9 @@ 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 }