提交 450c3e4d 编写于 作者: Q Qxyat 提交者: Amir Hardon

Don't accept gestures by ForwardingGestureRecognizer (#7558)

ForwardingGestureRecognizer was previously accepting the gesture when the touch sequence ended, this was causing some other gesture recognizers to not accept the gestures (e.g tapping on the my location button in a Google Map didn't work).
上级 1c26bf8c
......@@ -416,7 +416,7 @@ void FlutterPlatformViewsController::EnsureGLOverlayInitialized(
- (void)touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event {
[_flutterView touchesEnded:touches withEvent:event];
self.state = UIGestureRecognizerStateEnded;
self.state = UIGestureRecognizerStateFailed;
}
- (void)touchesCancelled:(NSSet*)touches withEvent:(UIEvent*)event {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册