Skip to content

Commit

Permalink
fix(reg): Fix regression which make test to fail on wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
dr1rrb committed Mar 15, 2024
1 parent 2dab5e9 commit 8d830c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Uno.UI/UI/Xaml/Internal/UnoRootElementLogic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ internal void ProcessPointerUp(PointerRoutedEventArgs args, bool isAfterHandledU
#endif

// At the end of our "up" processing, we reset the flag to make sure that the native handler (iOS, Android and WASM)
// won't try to sent it to us again.
// won't try to sent it to us again (if not already the case ^^).
// (This could be the case if the args was flagged as handled in the ReleaseCaptures call above, like in RatingControl).
args.Handled = false; // == isHandled;
args.Handled = isAfterHandledUp;
}

private static void ReleaseCaptures(PointerRoutedEventArgs routedArgs)
Expand Down

0 comments on commit 8d830c5

Please sign in to comment.