mirror of
https://github.com/SimpleMobileTools/Simple-Draw.git
synced 2025-06-05 21:59:17 +02:00
removing a redundant variable
This commit is contained in:
@ -40,7 +40,6 @@ class MyCanvas(context: Context, attrs: AttributeSet) : View(context, attrs) {
|
|||||||
private var mStartX = 0f
|
private var mStartX = 0f
|
||||||
private var mStartY = 0f
|
private var mStartY = 0f
|
||||||
private var mCurrBrushSize = 0f
|
private var mCurrBrushSize = 0f
|
||||||
private var mIsSaving = false
|
|
||||||
private var mAllowZooming = true
|
private var mAllowZooming = true
|
||||||
private var mIsEraserOn = false
|
private var mIsEraserOn = false
|
||||||
private var mWasMultitouch = false
|
private var mWasMultitouch = false
|
||||||
@ -134,9 +133,7 @@ class MyCanvas(context: Context, attrs: AttributeSet) : View(context, attrs) {
|
|||||||
val bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888)
|
val bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888)
|
||||||
val canvas = Canvas(bitmap)
|
val canvas = Canvas(bitmap)
|
||||||
canvas.drawColor(Color.WHITE)
|
canvas.drawColor(Color.WHITE)
|
||||||
mIsSaving = true
|
|
||||||
draw(canvas)
|
draw(canvas)
|
||||||
mIsSaving = false
|
|
||||||
return bitmap
|
return bitmap
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user