]> git.saurik.com Git - cydia.git/commitdiff
I apparently lost this rotation commit somewhere.
authorJay Freeman (saurik) <saurik@saurik.com>
Thu, 30 Oct 2014 18:16:31 +0000 (11:16 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Thu, 30 Oct 2014 18:16:31 +0000 (11:16 -0700)
CyteKit/ViewController.mm
MobileCydia.mm

index b40ac6de3b1a2cda1f2e08211ca4919137be3099..1991bcfd1062149f2ec8a97fa7954cdcc7a780d3 100644 (file)
@@ -26,8 +26,6 @@
 
 #include "iPhonePrivate.h"
 
-extern bool IsWildcat_;
-
 @implementation UIViewController (Cydia)
 
 - (BOOL) hasLoaded {
@@ -109,7 +107,9 @@ extern bool IsWildcat_;
 }
 
 - (NSUInteger) supportedInterfaceOrientations {
-    return IsWildcat_ ? UIInterfaceOrientationMaskAll : UIInterfaceOrientationMaskPortrait;
+    extern bool IsWildcat_;
+    extern CGFloat ScreenScale_;
+    return IsWildcat_ || ScreenScale_ == 3 ? UIInterfaceOrientationMaskAll : UIInterfaceOrientationMaskPortrait;
 }
 
 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
index 15a4f8154552d99f58ff71d12c1c660ebf8ee956..c57910f9aab8761c2f5d16422b46acf1655ef369 100644 (file)
@@ -820,7 +820,7 @@ bool Changed_;
 static time_t now_;
 
 bool IsWildcat_;
-static CGFloat ScreenScale_;
+CGFloat ScreenScale_;
 static NSString *Idiom_;
 static _H<NSString> Firmware_;
 static NSString *Major_;