From 81d7a828f66b94e0885f2917c3f753bc4ee13fad Mon Sep 17 00:00:00 2001 From: "rsesek@chromium.org" Date: Mon, 25 Jul 2011 23:10:26 +0000 Subject: [Mac] Don't call -[NSEvent touchesMatchingPhase:inView:] if we don't intend to recognize a gesture. BUG=90408 TEST=On Leopard, swipe and don't crash. Review URL: http://codereview.chromium.org/7471053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93989 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/ui/cocoa/browser_window_controller.mm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chrome/browser/ui/cocoa/browser_window_controller.mm b/chrome/browser/ui/cocoa/browser_window_controller.mm index 06cbcfb..6e4a26a 100644 --- a/chrome/browser/ui/cocoa/browser_window_controller.mm +++ b/chrome/browser/ui/cocoa/browser_window_controller.mm @@ -1740,9 +1740,11 @@ typedef NSInteger NSWindowAnimationBehavior; // gesture does not do this, so it must be manually recognized. See the note // inside |-recognizeTwoFingerGestures| for detailed information on the // interaction of the different preferences. + if (![self recognizeTwoFingerGestures]) + return; NSSet* touches = [event touchesMatchingPhase:NSTouchPhaseAny inView:nil]; - if ([self recognizeTwoFingerGestures] && [touches count] >= 2) { + if ([touches count] >= 2) { twoFingerGestureTouches_.reset([[NSMutableDictionary alloc] init]); for (NSTouch* touch in touches) { [twoFingerGestureTouches_ setObject:touch forKey:touch.identity]; -- cgit v1.1