Skip to content

Commit

Permalink
fix: exclusive touch fix
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Mar 12, 2021
1 parent 64bd989 commit 7cfe2d6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/gesturehandler.common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,6 @@ export abstract class BaseNative<T, U extends {}> extends Observable {
return this.native;
};
abstract createNative(options: U): T;

log(...args) {
console.log(`[${this.constructor.name}]`, ...args);
}
}

export abstract class ManagerBase extends Observable {
Expand Down Expand Up @@ -284,7 +280,7 @@ class ViewGestureExtended extends View {
if (!this.exclusiveTouchGestureHandler) {
const gestureHandler = Manager.getInstance().createGestureHandler(HandlerType.NATIVE_VIEW, NATIVE_GESTURE_TAG++, {
disallowInterruption: true,
shouldActivateOnStart: true,
shouldActivateOnStart: false,
shouldCancelWhenOutside: false,
});
this.exclusiveTouchGestureHandler = gestureHandler as any;
Expand Down

0 comments on commit 7cfe2d6

Please sign in to comment.