diff options
| author | andrewdkim <adkim414@gmail.com> | 2020-02-11 19:55:21 -0500 |
|---|---|---|
| committer | andrewdkim <adkim414@gmail.com> | 2020-02-11 19:55:21 -0500 |
| commit | 45de2817224d06ab83f81ceb372c40f4c9185d2e (patch) | |
| tree | 2d3e4d318729c818bcf67a1ca54295636229923f /src/client/views/Touchable.tsx | |
| parent | 6c379d0f45a4639484f93ca3416f7e6cf601e443 (diff) | |
bugfixing event handlers
Diffstat (limited to 'src/client/views/Touchable.tsx')
| -rw-r--r-- | src/client/views/Touchable.tsx | 4 |
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(); } |
