From 36c15387e8b8c20f680d04f0301f4e73170cf313 Mon Sep 17 00:00:00 2001 From: Doug Date: Mon, 28 Jun 2021 16:38:54 +0100 Subject: [PATCH] Use secondary colour from the theme for authenticationActivityIndicator. This allows the indicator to be seen when using a dark theme. --- Riot/Modules/Authentication/AuthenticationViewController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Riot/Modules/Authentication/AuthenticationViewController.m b/Riot/Modules/Authentication/AuthenticationViewController.m index b7a64071f..605a9963c 100644 --- a/Riot/Modules/Authentication/AuthenticationViewController.m +++ b/Riot/Modules/Authentication/AuthenticationViewController.m @@ -239,6 +239,7 @@ static const CGFloat kAuthInputContainerViewMinHeightConstraintConstant = 150.0; self.submitButton.backgroundColor = ThemeService.shared.theme.tintColor; self.skipButton.backgroundColor = ThemeService.shared.theme.tintColor; + self.authenticationActivityIndicator.color = ThemeService.shared.theme.textSecondaryColor; self.noFlowLabel.textColor = ThemeService.shared.theme.warningColor; NSMutableAttributedString *forgotPasswordTitle = [[NSMutableAttributedString alloc] initWithString:NSLocalizedStringFromTable(@"auth_forgot_password", @"Vector", nil)];