Fixes incorrect search cancel button tint color after browsing category/source apps

This commit is contained in:
Riley Testut
2023-12-08 18:39:46 -06:00
parent b963c956ec
commit ffe8d8bbe1

View File

@@ -111,6 +111,13 @@ class FeaturedViewController: UICollectionViewController
self.navigationItem.largeTitleDisplayMode = .always
}
override func viewDidAppear(_ animated: Bool)
{
super.viewDidAppear(animated)
self.navigationController?.navigationBar.tintColor = .altPrimary
}
}
private extension FeaturedViewController