diff --git a/AltStore/Authentication/AuthenticationViewController.swift b/AltStore/Authentication/AuthenticationViewController.swift index c910021b..bff72f06 100644 --- a/AltStore/Authentication/AuthenticationViewController.swift +++ b/AltStore/Authentication/AuthenticationViewController.swift @@ -31,7 +31,7 @@ class AuthenticationViewController: UIViewController { super.viewDidLoad() - self.signInButton.activityIndicatorView.style = .white + self.signInButton.activityIndicatorView.style = .medium for view in [self.appleIDBackgroundView!, self.passwordBackgroundView!, self.signInButton!] { diff --git a/AltStore/Browse/BrowseViewController.swift b/AltStore/Browse/BrowseViewController.swift index 3896481e..aa15adcf 100644 --- a/AltStore/Browse/BrowseViewController.swift +++ b/AltStore/Browse/BrowseViewController.swift @@ -94,7 +94,7 @@ private extension BrowseViewController cell.bannerView.iconImageView.isIndicatingActivity = true cell.bannerView.button.addTarget(self, action: #selector(BrowseViewController.performAppAction(_:)), for: .primaryActionTriggered) - cell.bannerView.button.activityIndicatorView.style = .white + cell.bannerView.button.activityIndicatorView.style = .medium // Explicitly set to false to ensure we're starting from a non-activity indicating state. // Otherwise, cell reuse can mess up some cached values. diff --git a/AltStore/Components/PillButton.swift b/AltStore/Components/PillButton.swift index 10c4c0c4..04da7992 100644 --- a/AltStore/Components/PillButton.swift +++ b/AltStore/Components/PillButton.swift @@ -88,7 +88,7 @@ class PillButton: UIButton self.layer.masksToBounds = true self.accessibilityTraits.formUnion([.updatesFrequently, .button]) - self.activityIndicatorView.style = .white + self.activityIndicatorView.style = .medium self.activityIndicatorView.isUserInteractionEnabled = false self.progressView.progress = 0