Browse Source

Use UIScrollViewIndicatorStyleWhite where appropriate to actually see the scrollbar

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Marc Etcheverry 11 years ago
parent
commit
b2e0a3808a

+ 1 - 1
Resources/VLCFutureOpenNetworkStreamViewController.xib

@@ -100,7 +100,7 @@
                     <color key="backgroundColor" red="0.1215686275" green="0.1215686275" blue="0.1215686275" alpha="1" colorSpace="calibratedRGB"/>
                     <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
                 </view>
-                <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" showsVerticalScrollIndicator="NO" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="10">
+                <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" indicatorStyle="white" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="10">
                     <rect key="frame" x="0.0" y="238" width="320" height="145"/>
                     <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                     <color key="backgroundColor" red="0.1215686275" green="0.1215686275" blue="0.1215686275" alpha="1" colorSpace="calibratedRGB"/>

+ 1 - 0
Sources/VLCLocalPlexFolderListViewController.m

@@ -49,6 +49,7 @@
     _tableView.delegate = self;
     _tableView.dataSource = self;
     _tableView.rowHeight = [VLCLocalNetworkListCell heightOfCell];
+    _tableView.indicatorStyle = UIScrollViewIndicatorStyleWhite;
     self.view = _tableView;
 }
 

+ 1 - 0
Sources/VLCLocalServerFolderListViewController.m

@@ -72,6 +72,7 @@
     _tableView.dataSource = self;
     _tableView.rowHeight = [VLCLocalNetworkListCell heightOfCell];
     _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
+    _tableView.indicatorStyle = UIScrollViewIndicatorStyleWhite;
     self.view = _tableView;
 }
 

+ 1 - 0
Sources/VLCLocalServerListViewController.m

@@ -72,6 +72,7 @@
     _tableView.backgroundColor = [UIColor VLCDarkBackgroundColor];
     _tableView.delegate = self;
     _tableView.dataSource = self;
+    _tableView.indicatorStyle = UIScrollViewIndicatorStyleWhite;
     self.view = _tableView;
     _activityIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
     _activityIndicator.center = _tableView.center;

+ 1 - 0
Sources/VLCMenuTableViewController.m

@@ -79,6 +79,7 @@
     _tableView.autoresizingMask = UIViewAutoresizingFlexibleHeight;
     _tableView.backgroundColor = [UIColor colorWithRed:(43.0f/255.0f) green:(43.0f/255.0f) blue:(43.0f/255.0f) alpha:1.0f];
     _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
+    _tableView.indicatorStyle = UIScrollViewIndicatorStyleWhite;
     _tableView.rowHeight = [VLCWiFiUploadTableViewCell heightOfCell];
     _tableView.scrollsToTop = NO;
 

+ 1 - 0
Sources/VLCPlaylistViewController.m

@@ -97,6 +97,7 @@ static NSString *kDisplayedFirstSteps = @"Did we display the first steps tutoria
         _tableView.delegate = self;
         _tableView.dataSource = self;
         _tableView.opaque = YES;
+        _tableView.indicatorStyle = UIScrollViewIndicatorStyleWhite;
         self.view = _tableView;
     } else {
         _folderLayout = [[VLCFolderCollectionViewFlowLayout alloc] init];