mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-23 01:00:04 +02:00
Fix some crashes
This commit is contained in:
parent
0d93afac51
commit
44677c7af6
1 changed files with 3 additions and 7 deletions
|
@ -2,11 +2,7 @@ package app.fedilab.android.helper
|
||||||
|
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.res.Resources
|
import android.content.res.Resources
|
||||||
import android.graphics.Canvas
|
import android.graphics.*
|
||||||
import android.graphics.Color
|
|
||||||
import android.graphics.DashPathEffect
|
|
||||||
import android.graphics.Paint
|
|
||||||
import android.graphics.Rect
|
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import androidx.core.content.res.ResourcesCompat
|
import androidx.core.content.res.ResourcesCompat
|
||||||
import androidx.preference.PreferenceManager
|
import androidx.preference.PreferenceManager
|
||||||
|
@ -68,8 +64,8 @@ class RecyclerViewThreadLines(context: Context, private val lineInfoList: List<L
|
||||||
|
|
||||||
// if below status has a full line for current level, extend the line to the bottom
|
// if below status has a full line for current level, extend the line to the bottom
|
||||||
if (i < childCount - 1) {
|
if (i < childCount - 1) {
|
||||||
val nextLineInfo = lineInfoList[position + 1]
|
if (i < lineInfoList.lastIndex - 1) {
|
||||||
if (level >= nextLineInfo.fullLinesStart && level <= nextLineInfo.fullLinesEnd) {
|
val nextLineInfo = lineInfoList[i + 1]
|
||||||
lineBottom = view.bottom.toFloat()
|
lineBottom = view.bottom.toFloat()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue