[Webkit-unassigned] [Bug 205158] Double tap to zoom out doesn't work after upgrading to iOS 13
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Jun 12 08:09:57 PDT 2020
https://bugs.webkit.org/show_bug.cgi?id=205158
--- Comment #17 from Antoine Quint <graouts at webkit.org> ---
We disable double-tap to zoom when double-tapping and already zoomed in because we enter this branch:
auto initialScale = [self _initialScaleFactor];
if (std::min(targetScale, initialScale) / std::max(targetScale, initialScale) > fasterTapSignificantZoomThreshold) {
RELEASE_LOG(ViewGestures, "Potential tap would not cause a significant zoom. Trigger click. (%p)", self);
[self _setDoubleTapGesturesEnabled:NO];
return;
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20200612/7cfc89e3/attachment.htm>
More information about the webkit-unassigned
mailing list