diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-06-27 10:04:46 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-06-27 10:04:46 +0200 |
commit | ffefeed888fe6f221a79575f8624257571eacf8d (patch) | |
tree | a40721186f380e51d071ec9385e04a6ef78c9558 /timeline.ts | |
parent | 94824d7b8a12eb0d9d55935649c477ba65abe780 (diff) |
loop selection working + fix #1
Diffstat (limited to 'timeline.ts')
-rw-r--r-- | timeline.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/timeline.ts b/timeline.ts index 7f673c5..f5f8066 100644 --- a/timeline.ts +++ b/timeline.ts @@ -32,6 +32,11 @@ export class loopSlide extends slide { export class loopBeginSlide extends slide { type = 'loopBegin' as slideTypes; + + constructor(public parent: loopSlide) { + super(parent.beginFrame); + this.id = parent.id; + } } export var toolToSlide = { |