diff options
author | bobzel <zzzman@gmail.com> | 2021-03-25 15:41:06 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-25 15:41:06 -0400 |
commit | c7619302a639c61096249362167e75dca6dbb376 (patch) | |
tree | bba3d9e8ff10b20f86fb968f3ad692a143ceb46f /src/client/views/nodes/formattedText/FormattedTextBox.tsx | |
parent | 5db728e099e25a807f69b316d813f662daf3eb7b (diff) |
added a dictation area to the stackedTimeline view for A/V. Now dictation annotations scroll in place.
Diffstat (limited to 'src/client/views/nodes/formattedText/FormattedTextBox.tsx')
-rw-r--r-- | src/client/views/nodes/formattedText/FormattedTextBox.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/FormattedTextBox.tsx b/src/client/views/nodes/formattedText/FormattedTextBox.tsx index 369f5ab39..aaf3a938e 100644 --- a/src/client/views/nodes/formattedText/FormattedTextBox.tsx +++ b/src/client/views/nodes/formattedText/FormattedTextBox.tsx @@ -667,7 +667,8 @@ export class FormattedTextBox extends ViewBoxAnnotatableComponent<(FieldViewProp if (this._break) { const textanchor = Docs.Create.TextanchorDocument({ title: "dictation anchor" }); this.addDocument(textanchor); - const link = DocUtils.MakeLinkToActiveAudio(textanchor, false); + const link = DocUtils.MakeLinkToActiveAudio(textanchor, false).lastElement(); + link && (Doc.GetProto(link).isDictation = true); if (!link) return; const audioanchor = Cast(link.anchor2, Doc, null); if (!audioanchor) return; |