removing an unused faq item

This commit is contained in:
tibbi
2019-01-12 18:47:38 +01:00
parent f9f247ecaf
commit 731cac7ef4
33 changed files with 1 additions and 65 deletions

View File

@ -16,7 +16,7 @@ class EditorDrawCanvas(context: Context, attrs: AttributeSet) : View(context, at
if (backgroundBitmap != null) {
val left = (width - backgroundBitmap!!.width) / 2
val top = (height - backgroundBitmap!!.height) / 2
canvas.drawBitmap(backgroundBitmap, left.toFloat(), top.toFloat(), null)
canvas.drawBitmap(backgroundBitmap!!, left.toFloat(), top.toFloat(), null)
}
canvas.restore()