Browse Source

Don't show the menu's navigation bar on the iPad

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Romain Goyet 12 years ago
parent
commit
549a725fb2
1 changed files with 2 additions and 0 deletions
  1. 2 0
      AspenProject/VLCPlaylistViewController.m

+ 2 - 0
AspenProject/VLCPlaylistViewController.m

@@ -284,6 +284,8 @@
         [navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"navBarBackgroundPhoneLandscape"]
                                                  forBarMetrics:UIBarMetricsLandscapePhone];
         self.menuViewController = navigationController;
+        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
+            navigationController.navigationBarHidden = YES;
     }
 
     if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {