]> git.saurik.com Git - cydia.git/commitdiff
Use setViewControllers: instead of setViewControllers:animated: with animated:NO.
authorJay Freeman (saurik) <saurik@saurik.com>
Sun, 17 Oct 2010 20:19:25 +0000 (13:19 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Sun, 17 Oct 2010 20:19:25 +0000 (13:19 -0700)
Cydia.mm

index 17f0c3f2ecfd331616a0dbdd3c636cddab0f092d..ad269ede6ca778fdd5025be649eb568c8b79d9aa 100644 (file)
--- a/Cydia.mm
+++ b/Cydia.mm
@@ -8252,7 +8252,7 @@ static _finline void _setHomePage(Cydia *self) {
     [page setDelegate:self];
 
     CYNavigationController *navController = (CYNavigationController *) [tabbar_ selectedViewController];
-    [navController setViewControllers:[NSArray arrayWithObject:page] animated:NO];
+    [navController setViewControllers:[NSArray arrayWithObject:page]];
     for (CYNavigationController *page in [tabbar_ viewControllers]) {
         if (page != navController) [page setViewControllers:nil];
     }