Skip to content

Commit f36734c

Browse files
committed
Missing changes
1 parent 2e75c7a commit f36734c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

reorderable/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
group = "org.burnoutcrew.composereorderable"
13-
version = "0.7.3"
13+
version = "0.7.4"
1414

1515
kotlin {
1616
android {

reorderable/src/commonMain/kotlin/org/burnoutcrew/reorderable/DragGesture.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ internal suspend fun PointerInputScope.awaitLongPressOrCancellation(
9696
}
9797

9898

99-
if (event.changes.fastAny { it.consumed.downChange || it.isOutOfBounds(size, extendedTouchPadding) }) {
99+
if (event.changes.fastAny { it.consumed.downChange || it.isOutOfBounds(size) }) {
100100
finished = true // Canceled
101101
}
102102

0 commit comments

Comments
 (0)