Skip to content

Commit 1882e97

Browse files
authored
Merge pull request #14 from Mr-Pine/development
Version 1.2.2
2 parents b068511 + b18e1cf commit 1882e97

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
val artifact = Artifact(
22
group = "de.mr-pine.utils",
33
id = "zoomables",
4-
version = "1.2.1"
4+
version = "1.2.2"
55
)

zoomables/src/main/kotlin/de/mr_pine/zoomables/Zoomables.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
package de.mr_pine.zoomables
44

5-
import android.util.Log
65
import androidx.compose.foundation.gestures.*
76
import androidx.compose.foundation.layout.Box
87
import androidx.compose.foundation.layout.BoxScope
@@ -22,8 +21,6 @@ import kotlinx.coroutines.CoroutineScope
2221
import kotlinx.coroutines.launch
2322
import kotlin.math.*
2423

25-
private const val TAG = "Zoomables"
26-
2724
/**
2825
* Creates a composable that wraps a given [Composable] and adds zoom, pan, rotation, double tap and swipe functionality
2926
*
@@ -247,7 +244,6 @@ public fun Zoomable(
247244
}
248245
}
249246
}
250-
Log.d(TAG, "Zoomable: ${currentEvent.changes.map(PointerInputChange::isConsumed)}")
251247
} while (currentEvent.changes.any { !it.isConsumed && !it.changedToUp()})
252248
}
253249
}) {

0 commit comments

Comments
 (0)