diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-28 10:38:38 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 02:41:28 -0800 |
commit | 302bf91cd8a4388360bd4ccb3464e995e90c3235 (patch) | |
tree | afd6b5d66c4722d34b6350a3106d483d74f3a6d4 /MobileCydia.mm | |
parent | dd48f2e66a305d635324adfc9e4689bcccb66357 (diff) |
Unload data when presenting modal page.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 2b6c632..0648e4c 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -9086,10 +9086,14 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { return [controllers objectAtIndex:3]; } +- (void) unloadData { + [tabbar_ unloadData]; +} + - (void) _updateData { [self _saveConfig]; - [tabbar_ unloadData]; + [self unloadData]; UINavigationController *navigation = [self queueNavigationController]; |