summaryrefslogtreecommitdiff
path: root/CyteKit
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2014-10-30 11:16:31 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2014-10-30 11:16:31 -0700
commitf98962e5a9e0baa28f1fca154ebaa33c52bfb654 (patch)
tree13ddb10886745fb13fcc40d0ba5d7fe6d9a09479 /CyteKit
parent856b8388ba6423823008aa77e4b83a4b9a37983b (diff)
I apparently lost this rotation commit somewhere.
Diffstat (limited to 'CyteKit')
-rw-r--r--CyteKit/ViewController.mm6
1 files changed, 3 insertions, 3 deletions
diff --git a/CyteKit/ViewController.mm b/CyteKit/ViewController.mm
index b40ac6d..1991bcf 100644
--- a/CyteKit/ViewController.mm
+++ b/CyteKit/ViewController.mm
@@ -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 {