aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/Touchable.tsx
diff options
context:
space:
mode:
authorandrewdkim <adkim414@gmail.com>2020-02-11 19:55:21 -0500
committerandrewdkim <adkim414@gmail.com>2020-02-11 19:55:21 -0500
commit45de2817224d06ab83f81ceb372c40f4c9185d2e (patch)
tree2d3e4d318729c818bcf67a1ca54295636229923f /src/client/views/Touchable.tsx
parent6c379d0f45a4639484f93ca3416f7e6cf601e443 (diff)
bugfixing event handlers
Diffstat (limited to 'src/client/views/Touchable.tsx')
-rw-r--r--src/client/views/Touchable.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/Touchable.tsx b/src/client/views/Touchable.tsx
index 13cc38589..bc3d07130 100644
--- a/src/client/views/Touchable.tsx
+++ b/src/client/views/Touchable.tsx
@@ -221,8 +221,8 @@ export abstract class Touchable<T = {}> extends React.Component<T> {
handle1PointerHoldMove = (e: Event, me: InteractionUtils.MultiTouchEvent<TouchEvent>): void => {
- e.stopPropagation();
- me.touchEvent.stopPropagation();
+ // e.stopPropagation();
+ // me.touchEvent.stopPropagation();
}