mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
fix pointerMove case (#38356)
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/38356 fix the correct case of this event Changelog: [General][Fixed] - fix the correct case of this event Reviewed By: javache Differential Revision: D47480741 fbshipit-source-id: a600f4921c59c571f2da251b36674a98c8c7e51f
This commit is contained in:
committed by
Facebook GitHub Bot
parent
995bb3e995
commit
eadbfb86c6
+1
-1
@@ -139,7 +139,7 @@ void TouchEventEmitter::onPointerDown(const PointerEvent &event) const {
|
||||
}
|
||||
|
||||
void TouchEventEmitter::onPointerMove(const PointerEvent &event) const {
|
||||
dispatchUniqueEvent("pointermove", std::make_shared<PointerEvent>(event));
|
||||
dispatchUniqueEvent("pointerMove", std::make_shared<PointerEvent>(event));
|
||||
}
|
||||
|
||||
void TouchEventEmitter::onPointerUp(const PointerEvent &event) const {
|
||||
|
||||
Reference in New Issue
Block a user