Browse Source

VLCCloudStorageTableViewController: Update progressLabel color

Soomin Lee 6 years ago
parent
commit
d08743f11d
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Sources/VLCCloudStorageTableViewController.m

+ 2 - 0
Sources/VLCCloudStorageTableViewController.m

@@ -75,6 +75,7 @@
     _progressView = [VLCProgressView new];
     _progressBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:_progressView];
     _progressView.tintColor = PresentationTheme.current.colors.orangeUI;
+    _progressView.progressLabel.textColor = PresentationTheme.current.colors.cellTextColor;
     
     sheet = [[VLCActionSheet alloc] init];
     manager = [[VLCCloudSortingSpecifierManager alloc] initWithController: self];
@@ -96,6 +97,7 @@
     _activityIndicator.activityIndicatorViewStyle = PresentationTheme.current == PresentationTheme.brightTheme ? UIActivityIndicatorViewStyleGray : UIActivityIndicatorViewStyleWhiteLarge;
     self.loginToCloudStorageView.backgroundColor = PresentationTheme.current.colors.background;
     self.navigationController.toolbar.barStyle = PresentationTheme.current.colors.toolBarStyle;
+    _progressView.progressLabel.textColor = PresentationTheme.current.colors.cellTextColor;
 }
 
 - (void)viewWillAppear:(BOOL)animated