Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,6 @@ class NativeViewGestureHandler : GestureHandler() {

private var lastActiveUpdate: ActiveUpdateSnapshot? = null

init {
shouldCancelWhenOutside = true
}

override fun resetConfig() {
super.resetConfig()
shouldActivateOnStart = DEFAULT_SHOULD_ACTIVATE_ON_START
Comment on lines 43 to 48
Expand Down Expand Up @@ -226,7 +222,7 @@ class NativeViewGestureHandler : GestureHandler() {
}

companion object {
private const val DEFAULT_SHOULD_CANCEL_WHEN_OUTSIDE = true
private const val DEFAULT_SHOULD_CANCEL_WHEN_OUTSIDE = false
private const val DEFAULT_SHOULD_ACTIVATE_ON_START = false
private const val DEFAULT_DISALLOW_INTERRUPTION = false
Comment on lines +225 to 227
private const val DEFAULT_YIELDS_TO_CONTINUOUS_GESTURES = false
Expand Down
Loading