File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
sentry-android-replay/src/main/java/io/sentry/android/replay/util Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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) {
You can’t perform that action at this time.
0 commit comments