2
0

Fix orientation bug in lock screen.

[FIXED]     When navigating back from oriented main vc, lock vc isn't rotated back to portrait.
This commit is contained in:
Maarten Billemont 2013-05-12 16:48:54 -04:00
parent fa4b2a9e54
commit a2521483c2
2 changed files with 6 additions and 1 deletions

2
External/Pearl vendored

@ -1 +1 @@
Subproject commit a2a43a63e26a110ebd130c918b8a47b41b20ae99
Subproject commit 339db15529385243ca52224eabf51ff2e2873d66

View File

@ -117,6 +117,11 @@
return UIInterfaceOrientationPortrait;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}
- (void)viewDidLoad {
NSString *newsURL = PearlString( @"http://www.masterpasswordapp.com/news.html?version=%@", [[PearlInfoPlist get] CFBundleVersion] );