You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: features/dd-sdk-android-session-replay-compose/src/main/kotlin/com/datadog/android/sessionreplay/compose/internal/mappers/semantics/CheckboxSemanticsNodeMapper.kt
+23-25Lines changed: 23 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ internal class CheckboxSemanticsNodeMapper(
46
46
)
47
47
)
48
48
} else {
49
-
createCheckboxWireframe(
49
+
createCheckboxWireframes(
50
50
parentContext = parentContext,
51
51
asyncJobStatusCallback = asyncJobStatusCallback,
52
52
semanticsNode = semanticsNode,
@@ -78,7 +78,7 @@ internal class CheckboxSemanticsNodeMapper(
78
78
)
79
79
}
80
80
81
-
privatefuncreateCheckboxWireframe(
81
+
privatefuncreateCheckboxWireframes(
82
82
parentContext:UiContext,
83
83
asyncJobStatusCallback:AsyncJobStatusCallback,
84
84
semanticsNode:SemanticsNode,
@@ -140,7 +140,7 @@ internal class CheckboxSemanticsNodeMapper(
140
140
}
141
141
142
142
// if we failed to create a wireframe from the path
143
-
returncreateManualCheckedWireframe(
143
+
returncreateManualCheckedWireframes(
144
144
semanticsNode = semanticsNode,
145
145
globalBounds = globalBounds,
146
146
backgroundColor = fillColorRgba,
@@ -162,15 +162,15 @@ internal class CheckboxSemanticsNodeMapper(
162
162
} ?:DEFAULT_COLOR_BLACK
163
163
}
164
164
165
-
privatefuncreateManualCheckedWireframe(
165
+
privatefuncreateManualCheckedWireframes(
166
166
semanticsNode:SemanticsNode,
167
167
globalBounds:GlobalBounds,
168
168
backgroundColor:String,
169
169
borderColor:String
170
170
): List<MobileSegment.Wireframe> {
171
171
val strokeColor = getFallbackCheckmarkColor(backgroundColor)
Copy file name to clipboardExpand all lines: features/dd-sdk-android-session-replay-compose/src/main/kotlin/com/datadog/android/sessionreplay/compose/internal/utils/ColorUtils.kt
Copy file name to clipboardExpand all lines: features/dd-sdk-android-session-replay-compose/src/main/kotlin/com/datadog/android/sessionreplay/compose/internal/utils/SemanticsUtils.kt
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -332,8 +332,7 @@ internal class SemanticsUtils(private val reflectionUtils: ReflectionUtils = Ref
Copy file name to clipboardExpand all lines: features/dd-sdk-android-session-replay-compose/src/test/kotlin/com/datadog/android/sessionreplay/compose/internal/mappers/semantics/CheckboxSemanticsNodeMapperTest.kt
+31-29Lines changed: 31 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,8 @@ internal class CheckboxSemanticsNodeMapperTest : AbstractSemanticsNodeMapperTest
0 commit comments