diff options
| author | bobzel <zzzman@gmail.com> | 2021-01-26 01:38:55 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-01-26 01:38:55 -0500 |
| commit | 20add09510fb02b144d421910a56d3f3896b1f90 (patch) | |
| tree | 6cea1b9339afe4f8d6efab6499bc8037fbb0e2f4 /src/client/views/DocumentDecorations.tsx | |
| parent | 0a48a55afd868b0cc3f298407a4b4882c4ee9bd2 (diff) | |
preparing to unify VideoBox timeline with AudioBox timeline. changed names from videoStart/audioStart,End to anchorStart,EndTime and _displayTimecode to _timecodeToShow etc
Diffstat (limited to 'src/client/views/DocumentDecorations.tsx')
| -rw-r--r-- | src/client/views/DocumentDecorations.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/DocumentDecorations.tsx b/src/client/views/DocumentDecorations.tsx index e1b9fe8aa..fb85684fb 100644 --- a/src/client/views/DocumentDecorations.tsx +++ b/src/client/views/DocumentDecorations.tsx @@ -613,7 +613,7 @@ export class DocumentDecorations extends React.Component<{ boundsLeft: number, b }}> {closeIcon} {bounds.r - bounds.x < 100 ? null : titleArea} - {(seldoc.rootDoc.annotationOn as Doc)?.type === DocumentType.AUDIO ? (null) : + {seldoc.rootDoc.anchorStartTime !== undefined ? (null) : <> {SelectionManager.Views().length !== 1 || seldoc.Document.type === DocumentType.INK ? (null) : <Tooltip key="i" title={<div className="dash-tooltip">{`${seldoc.finalLayoutKey.includes("icon") ? "De" : ""}Iconify Document`}</div>} placement="top"> |
