diff options
| author | bobzel <zzzman@gmail.com> | 2022-07-05 10:15:54 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-07-05 10:15:54 -0400 |
| commit | c1cd00c7664df694b867f4989a1f61d959390742 (patch) | |
| tree | 29cfd0a7f9ed26ce2fd2eaf90549232e6c999c9d /src/client/views/nodes/trails/PresBox.tsx | |
| parent | 2917042be6dc9d05a1a6a8d9dd01d19f915f1b68 (diff) | |
| parent | 3419d46a569da7ae8899588251426b82996ca523 (diff) | |
Merge branch 'master' into parker
Diffstat (limited to 'src/client/views/nodes/trails/PresBox.tsx')
| -rw-r--r-- | src/client/views/nodes/trails/PresBox.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/nodes/trails/PresBox.tsx b/src/client/views/nodes/trails/PresBox.tsx index b169ad6cd..345e5d094 100644 --- a/src/client/views/nodes/trails/PresBox.tsx +++ b/src/client/views/nodes/trails/PresBox.tsx @@ -30,6 +30,7 @@ import { FieldView, FieldViewProps } from '../FieldView'; import "./PresBox.scss"; import { PresEffect, PresMovement, PresStatus } from "./PresEnums"; import { ScriptingGlobals } from "../../../util/ScriptingGlobals"; +import { PresElementBox } from "."; export interface PinProps { audioRange?: boolean; @@ -222,6 +223,7 @@ export class PresBox extends ViewBoxBaseComponent<FieldViewProps>() { // No more frames in current doc and next slide is defined, therefore move to next slide nextSlide = (activeNext: Doc) => { const targetNext = Cast(activeNext.presentationTargetDoc, Doc, null); + console.info('nextSlide', activeNext.title, targetNext?.title); let nextSelected = this.itemIndex + 1; this.gotoDocument(nextSelected, this.activeItem); for (nextSelected = nextSelected + 1; nextSelected < this.childDocs.length; nextSelected++) { |
