Browse Source

playback info: re-order tabs

Felix Paul Kühne 9 years ago
parent
commit
474919155d
1 changed files with 2 additions and 4 deletions
  1. 2 4
      Apple-TV/Playback/Playback Info/VLCPlaybackInfoTVViewController.m

+ 2 - 4
Apple-TV/Playback/Playback Info/VLCPlaybackInfoTVViewController.m

@@ -53,14 +53,12 @@
 
     [self setupTabBarItemAppearance];
 
-    _allTabViewControllers = @[
-                               [[VLCPlaybackInfoMediaInfoTVViewController alloc] initWithNibName:nil bundle:nil],
-                               [[VLCPlaybackInfoChaptersTVViewController alloc] initWithNibName:nil bundle:nil],
+    _allTabViewControllers = @[[[VLCPlaybackInfoChaptersTVViewController alloc] initWithNibName:nil bundle:nil],
                                [[VLCPlaybackInfoTracksTVViewController alloc] initWithNibName:nil bundle:nil],
                                [[VLCPlaybackInfoRateTVViewController alloc] initWithNibName:nil bundle:nil],
+                               [[VLCPlaybackInfoMediaInfoTVViewController alloc] initWithNibName:nil bundle:nil],
                                ];
 
-
     UITabBarController *controller = [[VLCPlaybackInfoTVTabBarController alloc] init];
     controller.delegate = self;
     self.tabBarController = controller;