Skip to content

Commit

Permalink
[Fabric] Touch pointer moved was being reported to richedit as a poin…
Browse files Browse the repository at this point in the history
…terup (#13313)

* [Fabric] Touch pointer moved was being reported to richedit as a pointerup

* Change files
  • Loading branch information
acoates-ms authored Jun 7, 2024
1 parent d42a78e commit 71feab2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "prerelease",
"comment": "[Fabric] Touch pointer moved was being reported to richedit as a pointerup",
"packageName": "react-native-windows",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ void WindowsTextInputComponentView::OnPointerMoved(
msg = WM_MOUSEMOVE;
wParam = PointerRoutedEventArgsToMouseWParam(args);
} else {
msg = WM_POINTERUP;
msg = WM_POINTERUPDATE;
wParam = PointerPointToPointerWParam(pp);
}

Expand Down

0 comments on commit 71feab2

Please sign in to comment.