Overlay strokeWidth: 5 -> 10

This commit is contained in:
Pierre-Yves Nicolas
2025-07-02 09:03:39 +02:00
parent 9c9963845e
commit c67cd78e50

View File

@@ -167,7 +167,7 @@ fun AnalysisOverlay(liveAnalysisState: LiveAnalysisState, debugMode: Boolean) {
toHeight = size.height.toInt() toHeight = size.height.toInt()
) )
scaledQuad.edges().forEach { scaledQuad.edges().forEach {
drawLine(Color.Green, it.from.toOffset(), it.to.toOffset(), 5.0f) drawLine(Color.Green, it.from.toOffset(), it.to.toOffset(), 10.0f)
} }
} }
} }