Skip to content

Commit eee1c1d

Browse files
committed
Format code
1 parent 8cd317c commit eee1c1d

File tree

1 file changed

+3
-3
lines changed
  • sentry-android-replay/src/main/java/io/sentry/android/replay/util

1 file changed

+3
-3
lines changed

sentry-android-replay/src/main/java/io/sentry/android/replay/util/Views.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,9 @@ internal class AndroidTextLayout(private val layout: Layout) : TextLayout {
191191
}
192192

193193
/**
194-
* If text gets ellipsized, we return the left and right bounds of the ellipsized text instead of the width, as it's set to
195-
* some obscure VERY_WIDE value.
196-
* E.g. see https://cs.android.com/android/platform/superproject/main/+/main:frameworks/base/core/java/android/widget/TextView.java;l=468?q=VERY_WIDE
194+
* If text gets ellipsized, we return the left and right bounds of the ellipsized text instead of
195+
* the width, as it's set to some obscure VERY_WIDE value. E.g. see
196+
* https://cs.android.com/android/platform/superproject/main/+/main:frameworks/base/core/java/android/widget/TextView.java;l=468?q=VERY_WIDE
197197
*/
198198
override fun getLineLeft(line: Int): Float {
199199
return if (layout.ellipsizedWidth > 0 && layout.ellipsizedWidth < layout.width) {

0 commit comments

Comments
 (0)