Skip to content

Commit

Permalink
chore: Adjust namespacing
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinZikmund committed Dec 20, 2024
1 parent 0fe8895 commit 1a43267
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Uno.UI.Composition/Composition/VisualInteractionSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ private protected override void DisposeInternal()
// For now, the API diverges from WinUI, and an implicit conversion operator will be provided to convert
// from Microsoft.UI.Input.PointerPoint to Windows.UI.Input.PointerPoint.
// In Uno 6, we will make a breaking change to match WinUI.
public void TryRedirectForManipulation(Windows.UI.Input.PointerPoint pointerPoint)
public void TryRedirectForManipulation(global::Windows.UI.Input.PointerPoint pointerPoint)
{
// https://learn.microsoft.com/windows/windows-app-sdk/api/winrt/microsoft.ui.composition.interactions.visualinteractionsource.tryredirectformanipulation
// > This method should only be called with a PointerDeviceType of Touch.
if (pointerPoint.PointerDeviceType == Windows.Devices.Input.PointerDeviceType.Touch &&
if (pointerPoint.PointerDeviceType == global::Windows.Devices.Input.PointerDeviceType.Touch &&
Source.CompositionTarget is { } compositionTarget)
{
foreach (var tracker in Trackers)
Expand Down

0 comments on commit 1a43267

Please sign in to comment.