From 4752c219643688cafbcdba760c2cf5bad65cfb7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ing=2E=20Jorge=20Perales=20D=C3=ADaz?= Date: Fri, 6 Mar 2026 14:22:20 -0600 Subject: [PATCH] Fix PanGestureRecognizer not starting when drag begins near control edge on Windows --- .../Platform/GestureManager/GesturePlatformManager.Windows.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controls/src/Core/Platform/GestureManager/GesturePlatformManager.Windows.cs b/src/Controls/src/Core/Platform/GestureManager/GesturePlatformManager.Windows.cs index c4306ddc8f79..fe6a8311049d 100644 --- a/src/Controls/src/Core/Platform/GestureManager/GesturePlatformManager.Windows.cs +++ b/src/Controls/src/Core/Platform/GestureManager/GesturePlatformManager.Windows.cs @@ -554,7 +554,7 @@ void OnPointerExited(object sender, PointerRoutedEventArgs e) { SwipeComplete(true); - if (!_isPanning) + if (!_isPanning && !_isPinching && !_isSwiping) { _fingers.Remove(e.Pointer.PointerId); }