From 3ac13a9da329e079df48a3edfa923d37b4542cd8 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 3 Nov 2010 08:32:33 -0700 Subject: [PATCH] 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 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 { -- 2.45.2