mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 17:47:16 +00:00
AnimatedLayer playing default should be false (#945)
This commit is contained in:
parent
3893f76d38
commit
833907e1c2
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue