From e11ce9be707debb59cd2c2b978b71a388d734477 Mon Sep 17 00:00:00 2001 From: Naveen Date: Sat, 11 Mar 2023 07:18:53 +0530 Subject: [PATCH] Increase flood fill stroke width --- .../kotlin/com/simplemobiletools/draw/pro/views/MyCanvas.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/simplemobiletools/draw/pro/views/MyCanvas.kt b/app/src/main/kotlin/com/simplemobiletools/draw/pro/views/MyCanvas.kt index 6eb835a..21bcdad 100644 --- a/app/src/main/kotlin/com/simplemobiletools/draw/pro/views/MyCanvas.kt +++ b/app/src/main/kotlin/com/simplemobiletools/draw/pro/views/MyCanvas.kt @@ -376,7 +376,7 @@ class MyCanvas(context: Context, attrs: AttributeSet) : View(context, attrs) { ensureBackgroundThread { val path = bitmap.vectorFloodFill(color = color, x = touchedX, y = touchedY, tolerance = FLOOD_FILL_TOLERANCE) - val paintOpts = PaintOptions(color = color, strokeWidth = 4f) + val paintOpts = PaintOptions(color = color, strokeWidth = 5f) addOperation(path, paintOpts) post { invalidate() } }