From 833907e1c25f192f794f66b806bfee0eddd3d2f2 Mon Sep 17 00:00:00 2001 From: jberg Date: Fri, 11 Oct 2019 20:03:54 -0700 Subject: [PATCH] AnimatedLayer playing default should be false (#945) --- modern/src/runtime/AnimatedLayer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modern/src/runtime/AnimatedLayer.ts b/modern/src/runtime/AnimatedLayer.ts index f590d44f..06aa9521 100644 --- a/modern/src/runtime/AnimatedLayer.ts +++ b/modern/src/runtime/AnimatedLayer.ts @@ -63,7 +63,7 @@ class AnimatedLayer extends Layer { this._typedAttributes = this.attributes; const { autoplay, autoreplay, start, speed } = this._typedAttributes; - this._playing = getBoolean(autoplay, true); + this._playing = getBoolean(autoplay, false); this._autoReplay = getBoolean(autoreplay, true); this._frameNum = getNumber(start, 0); this._start = getNumber(start, 0);