diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2020-05-23 23:25:22 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2020-05-23 23:25:22 -0400 |
| commit | 2ba063ff94a04e89ee1fa1fde7d71a839f5d6856 (patch) | |
| tree | 13d053bfd21c911f4e68bf401d4c14b7e9f29e0b /src/client/views/presentationview/PresElementBox.tsx | |
| parent | 43818b137486f3d4431e1c3b9f4de0b0aefba9ca (diff) | |
switched frame animations to use currentFrame and activeFrame to fix aliasing issue of progressive slides at different frame codes
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 364c1d060..31ffde8af 100644 --- a/src/client/views/presentationview/PresElementBox.tsx +++ b/src/client/views/presentationview/PresElementBox.tsx @@ -102,7 +102,7 @@ export class PresElementBox extends ViewBoxBaseComponent<FieldViewProps, PresDoc const rootTarget = Cast(this.rootDoc.presentationTargetDoc, Doc, null); const docs = DocListCast(rootTarget[Doc.LayoutFieldKey(rootTarget)]); if (this.rootDoc.presProgressivize) { - rootTarget.currentTimecode = 0; + rootTarget.currentFrame = 0; CollectionFreeFormDocumentView.setupKeyframes(docs, docs.length, true); rootTarget.lastTimecode = docs.length - 1; } |
