mirror of
https://github.com/SimpleMobileTools/Simple-Draw.git
synced 2025-02-17 12:10:47 +01:00
Merge pull request #272 from Naveen3Singh/decrease_ff_tolerance
Decrease flood fill tolerance to 1
This commit is contained in:
commit
ed1e6c9a9b
@ -28,7 +28,7 @@ import kotlin.math.min
|
||||
class MyCanvas(context: Context, attrs: AttributeSet) : View(context, attrs) {
|
||||
private val MIN_ERASER_WIDTH = 20f
|
||||
private val MAX_HISTORY_COUNT = 1000
|
||||
private val FLOOD_FILL_TOLERANCE = 10
|
||||
private val FLOOD_FILL_TOLERANCE = 1
|
||||
|
||||
private val mScaledTouchSlop = ViewConfiguration.get(context).scaledTouchSlop
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user