Authored by Tracy Harton

Fix for two finger tap zoom out. Zoom was being trigger at the end of a pinch i…

…f the user did not release at the same time
... ... @@ -439,7 +439,7 @@
}
}
}
else if(lastGesture.numTouches == 1)
else if(!enableDragging && (lastGesture.numTouches == 1))
{
float prevZoomFactor = [self.contents prevNativeZoomFactor];
if (prevZoomFactor != 0)
... ...