summaryrefslogtreecommitdiff
path: root/CyteKit/InterfaceOrientation.h
diff options
context:
space:
mode:
Diffstat (limited to 'CyteKit/InterfaceOrientation.h')
-rw-r--r--CyteKit/InterfaceOrientation.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/CyteKit/InterfaceOrientation.h b/CyteKit/InterfaceOrientation.h
index eddfaf4..813958e 100644
--- a/CyteKit/InterfaceOrientation.h
+++ b/CyteKit/InterfaceOrientation.h
@@ -22,7 +22,8 @@
- (NSUInteger) supportedInterfaceOrientations {
extern bool IsWildcat_;
extern CGFloat ScreenScale_;
- return IsWildcat_ || ScreenScale_ == 3 ? UIInterfaceOrientationMaskAll : UIInterfaceOrientationMaskPortrait;
+ //return IsWildcat_ || ScreenScale_ == 3 ? UIInterfaceOrientationMaskAll : UIInterfaceOrientationMaskPortrait;
+ return UIInterfaceOrientationMaskAll;
}
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {