Skip to content

Commit e11ce9b

Browse files
committed
Increase flood fill stroke width
1 parent fd6548c commit e11ce9b

File tree

1 file changed

+1
-1
lines changed
  • app/src/main/kotlin/com/simplemobiletools/draw/pro/views

1 file changed

+1
-1
lines changed

app/src/main/kotlin/com/simplemobiletools/draw/pro/views/MyCanvas.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ class MyCanvas(context: Context, attrs: AttributeSet) : View(context, attrs) {
376376

377377
ensureBackgroundThread {
378378
val path = bitmap.vectorFloodFill(color = color, x = touchedX, y = touchedY, tolerance = FLOOD_FILL_TOLERANCE)
379-
val paintOpts = PaintOptions(color = color, strokeWidth = 4f)
379+
val paintOpts = PaintOptions(color = color, strokeWidth = 5f)
380380
addOperation(path, paintOpts)
381381
post { invalidate() }
382382
}

0 commit comments

Comments
 (0)