From 55c894179a8b3bb011b0e6b66a7f685ee84251ff Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 27 Jan 2014 16:39:29 -0800 Subject: [PATCH] Disable Mouse Support by force on iOS 7 and above. --- Tweak.mm | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.47.2