From 748547209562e9f7a1de1b0c64b5b3af2a2e8733 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Mon, 4 Nov 2019 11:17:28 -0800 Subject: [PATCH] Fixes hard-to-see sideloading activity indicator in dark mode --- AltStore/My Apps/MyAppsViewController.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AltStore/My Apps/MyAppsViewController.swift b/AltStore/My Apps/MyAppsViewController.swift index 88a92e0c..8924a624 100644 --- a/AltStore/My Apps/MyAppsViewController.swift +++ b/AltStore/My Apps/MyAppsViewController.swift @@ -67,6 +67,11 @@ class MyAppsViewController: UICollectionViewController { super.viewDidLoad() + if #available(iOS 13.0, *) + { + self.navigationItem.leftBarButtonItem?.activityIndicatorView.style = .medium + } + // Allows us to intercept delegate callbacks. self.updatesDataSource.fetchedResultsController.delegate = self