Преглед на файлове

VLCServerListViewController: Fix color flickering while navigating back

Soomin Lee преди 6 години
родител
ревизия
febb40abe6
променени са 1 файла, в които са добавени 2 реда и са изтрити 0 реда
  1. 2 0
      Sources/LocalNetworkConnectivity/VLCServerListViewController.m

+ 2 - 0
Sources/LocalNetworkConnectivity/VLCServerListViewController.m

@@ -98,6 +98,7 @@
     _localNetworkTableView.separatorStyle = UITableViewCellSeparatorStyleNone;
 
     [self.navigationController.navigationBar setTranslucent:NO];
+    self.navigationController.view.backgroundColor = PresentationTheme.current.colors.background;
 
     _remoteNetworkTableView = [[UITableView alloc] initWithFrame:[UIScreen mainScreen].bounds style:UITableViewStylePlain];
     _remoteNetworkTableView.translatesAutoresizingMaskIntoConstraints = NO;
@@ -331,6 +332,7 @@
     _scrollView.backgroundColor = PresentationTheme.current.colors.background;
     _localNetworkTableView.separatorColor = PresentationTheme.current.colors.background;
     _refreshControl.backgroundColor = PresentationTheme.current.colors.background;
+    self.navigationController.view.backgroundColor = PresentationTheme.current.colors.background;
     [self setNeedsStatusBarAppearanceUpdate];
 }