diff options
| author | bobzel <zzzman@gmail.com> | 2022-06-02 15:44:23 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-06-02 15:44:23 -0400 |
| commit | 58114c03252463b7386d16fc2aef61c361038bfa (patch) | |
| tree | bc4fc6f22f9d2a38583eaeb8ae9ba489350d5cd0 /src/client/views/nodes/trails | |
| parent | a801dd089a1d2420bca4e8aa9b6eb893d314ad24 (diff) | |
fixed previously introduced bug where pin doc added pres to first tab collection. Highlight pres targets when following. fixed videoBox to play regions properly. adjusted labelBox for stackedTimeline views. fixed stacked timelines to not stop keyboard events which was preventing text notes from being created on video boxes.
Diffstat (limited to 'src/client/views/nodes/trails')
| -rw-r--r-- | src/client/views/nodes/trails/PresBox.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/trails/PresBox.tsx b/src/client/views/nodes/trails/PresBox.tsx index 9641b403f..077db9077 100644 --- a/src/client/views/nodes/trails/PresBox.tsx +++ b/src/client/views/nodes/trails/PresBox.tsx @@ -297,6 +297,7 @@ export class PresBox extends ViewBoxBaseComponent<FieldViewProps>() { this.startTempMedia(targetDoc, activeItem); } if (targetDoc) { + Doc.linkFollowHighlight((targetDoc.annotationOn instanceof Doc) ? [targetDoc, targetDoc.annotationOn] : targetDoc); targetDoc && runInAction(() => { if (activeItem.presMovement === PresMovement.Jump) targetDoc.focusSpeed = 0; else targetDoc.focusSpeed = activeItem.presTransition ? activeItem.presTransition : 500; |
