From bc3a76770c0f2381ed096a155a5174b01e5b2832 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Fri, 20 Jul 2012 12:27:26 +0000 Subject: [PATCH] patch: feature #2974 - multi touch gestures. thanks to Bo Jordan. --- src/lib/platform/COSXScreen.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/lib/platform/COSXScreen.cpp b/src/lib/platform/COSXScreen.cpp index 7a734eb7..751fe77b 100644 --- a/src/lib/platform/COSXScreen.cpp +++ b/src/lib/platform/COSXScreen.cpp @@ -1797,15 +1797,6 @@ COSXScreen::handleCGInputEvent(CGEventTapProxy proxy, COSXScreen* screen = (COSXScreen*)refcon; CGPoint pos; - // Patch by Perceptum to ignore what seems to be an "Out of Bounds" - // event that is emitted by touching the trackpad on a MacBook - // Suspicion that it is related to the new Gestures trackpad - // bryan@perceptum.biz - if(type > NX_LASTEVENT) { - LOG((CLOG_NOTE "Ignoring Out of Bounds Quartz Event type: 0x%02x [max 0x%02x]", type, NX_LASTEVENT)); - return NULL; - } - switch(type) { case kCGEventLeftMouseDown: case kCGEventRightMouseDown: