We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e75c7a commit f36734cCopy full SHA for f36734c
reorderable/build.gradle.kts
@@ -10,7 +10,7 @@ plugins {
10
}
11
12
group = "org.burnoutcrew.composereorderable"
13
-version = "0.7.3"
+version = "0.7.4"
14
15
kotlin {
16
android {
reorderable/src/commonMain/kotlin/org/burnoutcrew/reorderable/DragGesture.kt
@@ -96,7 +96,7 @@ internal suspend fun PointerInputScope.awaitLongPressOrCancellation(
96
97
98
99
- if (event.changes.fastAny { it.consumed.downChange || it.isOutOfBounds(size, extendedTouchPadding) }) {
+ if (event.changes.fastAny { it.consumed.downChange || it.isOutOfBounds(size) }) {
100
finished = true // Canceled
101
102
0 commit comments