From d373498d2913bbd63d2244ec7ae38ddc04e0cffc Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 29 Mar 2011 10:19:33 +0000 Subject: [PATCH] Seriously remove that keyboard. --- Tweak.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tweak.mm b/Tweak.mm index 361223f..f00d176 100644 --- a/Tweak.mm +++ b/Tweak.mm @@ -127,7 +127,8 @@ MSClassHook(UIPeripheralHost) // avoid rendering a keyboard onto the default SBAwayView while automatic keyboard is online MSInstanceMessageHook0(UIView *, SBAwayView, inputView) { - if (online_ == 0) + // XXX: there is a conceptual error here + if (online_ == 0 && false) return MSOldCall(); return [[[UIView alloc] init] autorelease]; -- 2.45.2