Skip to content
This repository was archived by the owner on Apr 29, 2021. It is now read-only.

Commit 0c9dfb5

Browse files
author
Yuncong Zhang
committed
[1.5.4] Fix an issue.
1 parent 0095f6f commit 0c9dfb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Runtime/gestures/binding.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void _handlePointerEvent(PointerEvent evt) {
6363
}
6464

6565
HitTestResult hitTestResult = null;
66-
if (evt is PointerDownEvent || evt is PointerSignalResolver) {
66+
if (evt is PointerDownEvent || evt is PointerSignalEvent) {
6767
D.assert(!this._hitTests.ContainsKey(evt.pointer));
6868
hitTestResult = new HitTestResult();
6969
this.hitTest(hitTestResult, evt.position);

0 commit comments

Comments
 (0)