diff options
| author | bobzel <zzzman@gmail.com> | 2021-01-27 12:13:21 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-01-27 12:13:21 -0500 |
| commit | 31faf2b0683fc15c040d47425f931531c0d8a0f8 (patch) | |
| tree | d2c4191587d5282aa1b43c13b323a38d8c5f6c0e /src/client/views/DocumentDecorations.tsx | |
| parent | 3576c88e3c5bc9c6745c2f7fa70721c4057cae0e (diff) | |
fixed size of timeline toggle on videoBox and some other tweaks to hide documentdeocrations on timeline items.
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 fb85684fb..250b93188 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.anchorStartTime !== undefined ? (null) : + {seldoc.props.hideDecorations ? (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"> |
