Commit 7a9d8a69 authored by Roman Sedaikin's avatar Roman Sedaikin

Refactoring: isInited.

parent 3f1f3b26
......@@ -45,13 +45,13 @@ open class SkiaLayer(
}
}
private var isInit = false
private var isInited = false
private fun checkIsShowing() {
if (!isInit && isShowing) {
if (!isInited && isShowing) {
backedLayer.defineContentScale()
init()
isInit = true
isInited = true
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment