From: Jay Freeman (saurik) Date: Tue, 28 Jan 2014 00:39:29 +0000 (-0800) Subject: Disable Mouse Support by force on iOS 7 and above. X-Git-Tag: v0.9.3401^0 X-Git-Url: https://git.saurik.com/veency.git/commitdiff_plain/55c894179a8b3bb011b0e6b66a7f685ee84251ff Disable Mouse Support by force on iOS 7 and above. --- diff --git a/Tweak.mm b/Tweak.mm index 04f9b01..8af8c84 100644 --- a/Tweak.mm +++ b/Tweak.mm @@ -189,6 +189,9 @@ static void VNCBlack() { } static bool Ashikase(bool always) { + if (kCFCoreFoundationVersionNumber >= 800) + return false; + if (!always && !cursor_) return false;