This commit is contained in:
Horis
2025-05-14 22:46:21 +08:00
parent 4eeebdffc5
commit 45e9a84c5f
@@ -23,8 +23,8 @@ fun CanvasRecorder.recordIfNeeded(view: View): Boolean {
}
inline fun CanvasRecorder.record(width: Int, height: Int, block: Canvas.() -> Unit) {
val canvas = beginRecording(width, height)
try {
val canvas = beginRecording(width, height)
canvas.withSave {
block()
}