Browse Source

minor layout fixes

Felix Paul Kühne 11 years ago
parent
commit
9debf250cb
2 changed files with 3 additions and 3 deletions
  1. 1 1
      Sources/VLCMenuTableViewController.m
  2. 2 2
      Sources/VLCMovieViewController.m

+ 1 - 1
Sources/VLCMenuTableViewController.m

@@ -213,7 +213,7 @@
         if ([rawTitle isEqualToString:@"Settings"])
             cell.imageView.image = [UIImage imageNamed:@"Settings"];
         else
-            cell.imageView.image = [UIImage imageNamed:@"About"];
+            cell.imageView.image = [UIImage imageNamed:@"menuCone"];
     }
 
     if (!([rawTitle isEqualToString:@"Dropbox"] || [rawTitle isEqualToString:@"WiFi Upload"]))

+ 2 - 2
Sources/VLCMovieViewController.m

@@ -224,8 +224,6 @@
 
     _aspectRatios = @[@"DEFAULT", @"FILL_TO_SCREEN", @"4:3", @"16:9", @"16:10", @"2.21:1"];
 
-    [self.aspectRatioButton setBackgroundImage:[UIImage imageNamed:@"ratioButton"] forState:UIControlStateNormal];
-    [self.aspectRatioButton setBackgroundImage:[UIImage imageNamed:@"ratioButtonHighlight"] forState:UIControlStateHighlighted];
     [self.aspectRatioButton setImage:[UIImage imageNamed:@"ratioIcon"] forState:UIControlStateNormal];
     if (SYSTEM_RUNS_IOS7_OR_LATER) {
         self.backButton.tintColor = [UIColor colorWithRed:(190.0f/255.0f) green:(190.0f/255.0f) blue:(190.0f/255.0f) alpha:1.];
@@ -239,6 +237,8 @@
         rect.origin.y = rect.origin.y + 5.;
         self.resetVideoFilterButton.frame = rect;
     } else {
+        [self.aspectRatioButton setBackgroundImage:[UIImage imageNamed:@"ratioButton"] forState:UIControlStateNormal];
+        [self.aspectRatioButton setBackgroundImage:[UIImage imageNamed:@"ratioButtonHighlight"] forState:UIControlStateHighlighted];
         [self.toolbar setBackgroundImage:[UIImage imageNamed:@"seekbarBg"] forBarMetrics:UIBarMetricsDefault];
         [self.backButton setBackgroundImage:[UIImage imageNamed:@"playbackDoneButton"] forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
         [self.backButton setBackgroundImage:[UIImage imageNamed:@"playbackDoneButtonHighlight"] forState:UIControlStateHighlighted barMetrics:UIBarMetricsDefault];