From 722d98cad9374e0e03e85611c196a2a128b0f4a6 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 3 Nov 2010 08:32:33 -0700 Subject: We need to return YES from shouldAutorotateToInterfaceOrientation: for at least one orientation. --- MobileCydia.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MobileCydia.mm b/MobileCydia.mm index 428c884..60edfa0 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -7659,7 +7659,7 @@ freeing the view controllers on tab change */ } - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation { - return IsWildcat_; + return IsWildcat_ || orientation == UIInterfaceOrientationPortrait; } - (void) setTabBarController:(UITabBarController *)controller { -- cgit v1.2.3