From 0ca1c20fea4f414e5a798b03430ca02980161ae5 Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Tue, 28 Jul 2015 18:08:41 -0700 Subject: [PATCH] Enable multiple touches on SkySurface on iOS --- sky/shell/ios/sky_surface.mm | 1 + 1 file changed, 1 insertion(+) diff --git a/sky/shell/ios/sky_surface.mm b/sky/shell/ios/sky_surface.mm index 401eb8207eb..79239393fa2 100644 --- a/sky/shell/ios/sky_surface.mm +++ b/sky/shell/ios/sky_surface.mm @@ -67,6 +67,7 @@ static sky::InputEventPtr BasicInputEventFromRecognizer( self = [super init]; if (self) { _shell_view.reset(shellView); + self.multipleTouchEnabled = YES; [self installGestureRecognizers]; } return self;