Skip to content
Snippets Groups Projects
Commit c71591f2 authored by Nicolas Pomepuy's avatar Nicolas Pomepuy
Browse files

Fix a kotlin migration typo

parent 71944bf7
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@ class PlotView : FrameLayout {
data.forEach {
minsX.add(it.data.minByOrNull { it.key }?.key ?: 0L)
}
val minX = minsX.maxOrNull() ?: 0L
val minX = minsX.minOrNull() ?: 0L
drawLines(maxY, minX, maxX, canvas)
drawGrid(canvas, maxY, minX, maxX)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment