]> git.saurik.com Git - cydia.git/commitdiff
Unloading view controllers should unload their modal.
authorJay Freeman (saurik) <saurik@saurik.com>
Tue, 1 Mar 2011 03:09:59 +0000 (19:09 -0800)
committerJay Freeman (saurik) <saurik@saurik.com>
Mon, 7 Mar 2011 10:41:30 +0000 (02:41 -0800)
UICaboodle/RVPage.mm

index 40e54cd56d078f31429725d475281e417a016829..28123ee353043637050617130bdd51b0a0d741f9 100644 (file)
@@ -15,6 +15,8 @@ extern bool IsWildcat_;
 }
 
 - (void) unloadData {
+    if (UIViewController *modal = [self modalViewController])
+        [modal unloadData];
 }
 
 @end