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 72a523b commit c863646Copy full SHA for c863646
sentry-android-replay/src/main/java/io/sentry/android/replay/viewhierarchy/ComposeViewHierarchyNode.kt
@@ -158,7 +158,9 @@ internal object ComposeViewHierarchyNode {
158
shouldMask = true,
159
isImportantForContentCapture = false, // will be set by children
160
isVisible =
161
- !SentryLayoutNodeHelper.isTransparent(node) && visibleRect.height() > 0 && visibleRect.width() > 0,
+ !SentryLayoutNodeHelper.isTransparent(node) &&
162
+ visibleRect.height() > 0 &&
163
+ visibleRect.width() > 0,
164
visibleRect = visibleRect,
165
)
166
}
0 commit comments