We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbd5fec commit 1b4b898Copy full SHA for 1b4b898
1 file changed
sentry-compose/src/androidMain/kotlin/io/sentry/compose/gestures/ComposeGestureTargetLocator.kt
@@ -87,7 +87,10 @@ public class ComposeGestureTargetLocator(private val logger: ILogger) : GestureT
87
"androidx.compose.foundation.CombinedClickableElement" == type
88
) {
89
isClickable = true
90
- } else if ("androidx.compose.foundation.ScrollingLayoutElement" == type) {
+ } else if (
91
+ "androidx.compose.foundation.ScrollingLayoutElement" == type ||
92
+ "androidx.compose.foundation.ScrollingContainerElement" == type
93
+ ) {
94
isScrollable = true
95
}
96
0 commit comments