Fix #3097 swipe gesture not being handled in VisualElementTracker. (#3098) Fixes #3097

This commit is contained in:
Matthew Richardson 2018-06-27 11:30:27 +01:00 коммит произвёл Samantha Houts
Родитель 02096e1a04
Коммит aeca07c097
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -624,7 +624,7 @@ namespace Xamarin.Forms.Platform.UWP
bool hasSwipeGesture = gestures.GetGesturesFor<SwipeGestureRecognizer>().GetEnumerator().MoveNext();
bool hasPinchGesture = gestures.GetGesturesFor<PinchGestureRecognizer>().GetEnumerator().MoveNext();
bool hasPanGesture = gestures.GetGesturesFor<PanGestureRecognizer>().GetEnumerator().MoveNext();
if (!hasPinchGesture && !hasPanGesture)
if (!hasSwipeGesture && !hasPinchGesture && !hasPanGesture)
return;
//We can't handle ManipulationMode.Scale and System , so we don't support pinch/pan on a scrollview