Skip to content

Commit c863646

Browse files
committed
Format code
1 parent 72a523b commit c863646

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sentry-android-replay/src/main/java/io/sentry/android/replay/viewhierarchy/ComposeViewHierarchyNode.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,9 @@ internal object ComposeViewHierarchyNode {
158158
shouldMask = true,
159159
isImportantForContentCapture = false, // will be set by children
160160
isVisible =
161-
!SentryLayoutNodeHelper.isTransparent(node) && visibleRect.height() > 0 && visibleRect.width() > 0,
161+
!SentryLayoutNodeHelper.isTransparent(node) &&
162+
visibleRect.height() > 0 &&
163+
visibleRect.width() > 0,
162164
visibleRect = visibleRect,
163165
)
164166
}

0 commit comments

Comments
 (0)