diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-05-17 22:49:15 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-05-17 22:49:15 -0400 |
commit | 92ea94585d350cc9560bb8fd787444d29a05043c (patch) | |
tree | de2343020b743bbed6a2074108dd4c5ceb3392c7 /src/client/views/presentationview/PresElementBox.tsx | |
parent | da48b8a48898c9bc15958fc99cf9722952e13efd (diff) |
fixed presbox bug for showing element numbers. fixed progressivize
Diffstat (limited to 'src/client/views/presentationview/PresElementBox.tsx')
-rw-r--r-- | src/client/views/presentationview/PresElementBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/presentationview/PresElementBox.tsx b/src/client/views/presentationview/PresElementBox.tsx index 0ce40f116..a2a6882b9 100644 --- a/src/client/views/presentationview/PresElementBox.tsx +++ b/src/client/views/presentationview/PresElementBox.tsx @@ -105,7 +105,7 @@ export class PresElementBox extends ViewBoxBaseComponent<FieldViewProps, PresDoc rootTarget.currentTimecode = 0; CollectionFreeFormDocumentView.setupKeyframes(docs, docs.length, this.presBox); docs.forEach((d, i) => numberRange(docs.length - i).forEach(f => Cast(d["opacity-indexed"], listSpec("number"), [])[f + i] = 1)); - rootTarget.lastTimecode = docs.length; + rootTarget.lastTimecode = docs.length - 1; } } |