瀏覽代碼

VLCServerListViewController: Fix color flickering while navigating back

Soomin Lee 5 年之前
父節點
當前提交
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];
 }