From: Jay Freeman (saurik) Date: Wed, 3 Nov 2010 15:32:33 +0000 (-0700) Subject: We need to return YES from shouldAutorotateToInterfaceOrientation: for at least one... X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/3ac13a9da329e079df48a3edfa923d37b4542cd8 We need to return YES from shouldAutorotateToInterfaceOrientation: for at least one orientation. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 428c8848..60edfa0f 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 {