Quellcode durchsuchen

VLCMigrationViewController: Change background color according to theme

Soomin Lee vor 6 Jahren
Ursprung
Commit
75be9f7ab0
1 geänderte Dateien mit 2 neuen und 0 gelöschten Zeilen
  1. 2 0
      Sources/VLCMigrationViewController.m

+ 2 - 0
Sources/VLCMigrationViewController.m

@@ -11,6 +11,7 @@
  *****************************************************************************/
 
 #import "VLCMigrationViewController.h"
+#import "VLC-Swift.h"
 
 @implementation VLCMigrationViewController
 
@@ -21,6 +22,7 @@
 - (void)viewDidLoad
 {
     [super viewDidLoad];
+    self.view.backgroundColor = PresentationTheme.current.colors.background;
     [self.statusLabel setText:NSLocalizedString(@"UPGRADING_LIBRARY", "")];
 }
 @end