diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2014-05-22 04:34:34 -0700 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2014-05-22 04:34:34 -0700 |
commit | 7187b5b2e192b912de90a7c0a6d88ab987aae4f1 (patch) | |
tree | 14cd8a263731ad8cbcd391dbe736f3562bae20a2 | |
parent | 393a84a16da1723e828bb4e9d82c6369ba98d0b1 (diff) |
Allow multi-tasking while modal dialog is present.
-rw-r--r-- | MobileCydia.mm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 8e4c796..5c081bd 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -9344,6 +9344,9 @@ _end return false; } + if ([tabbar_ modalViewController] != nil) + return false; + // Use external process status API internally. // This is probably a really bad idea. // XXX: what is the point of this? does this solve anything at all? |