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/nodes/DocumentView.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/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 7b1b1bf0c..5ce8fcdcb 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -30,7 +30,6 @@ import { ContextMenuProps } from '../ContextMenuItem'; import { DocComponent } from "../DocComponent"; import { EditableView } from '../EditableView'; import { InkingStroke } from "../InkingStroke"; -import { InkStrokeProperties } from '../InkStrokeProperties'; import { StyleLayers, StyleProp } from "../StyleProvider"; import { CollectionFreeFormDocumentView } from "./CollectionFreeFormDocumentView"; import { DocumentContentsView } from "./DocumentContentsView"; @@ -83,6 +82,7 @@ export interface DocumentViewSharedProps { export interface DocumentViewProps extends DocumentViewSharedProps { // properties specific to DocumentViews but not to FieldView freezeDimensions?: boolean; + hideResizeHandles?: boolean; // whether to suppress DocumentDecorations when this document is selected hideTitle?: boolean; // forces suppression of title. e.g, treeView document labels suppress titles in case they are globally active via settings treeViewDoc?: Doc; contentPointerEvents?: string; // pointer events allowed for content of a document view. eg. set to "none" in menuSidebar for sharedDocs so that you can select a document, but not interact with its contents |