소스 검색

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];
 }