| Index: remoting/ios/app/app_delegate.mm
|
| diff --git a/remoting/ios/app/app_delegate.mm b/remoting/ios/app/app_delegate.mm
|
| index 9383cf5f30e7d18056aca56a7d5cd67b1cd0e128..d6c87e00505ca54eb8cfa034a36f6a4a2349a20f 100644
|
| --- a/remoting/ios/app/app_delegate.mm
|
| +++ b/remoting/ios/app/app_delegate.mm
|
| @@ -55,7 +55,10 @@
|
|
|
| - (void)launchRemotingViewController {
|
| RemotingViewController* vc = [[RemotingViewController alloc] init];
|
| - self.window.rootViewController = vc;
|
| + UINavigationController* navController =
|
| + [[UINavigationController alloc] initWithRootViewController:vc];
|
| + navController.navigationBarHidden = true;
|
| + self.window.rootViewController = navController;
|
| [self.window makeKeyAndVisible];
|
| }
|
|
|
|
|