diff options
author | bobzel <zzzman@gmail.com> | 2020-09-14 11:22:22 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-14 11:22:22 -0400 |
commit | bf5718d25e372689b97965eafc80dd7cbdd2963c (patch) | |
tree | 77e77d11ca6f414a0ab2b7880a7e13906476e4a0 /src/client/documents/Documents.ts | |
parent | e02715b188a8fbaf47b5aef9e1bc892bf57627a6 (diff) |
fixed userdoc tree view layout issues caused by outline mode. added treeViewHideHeader to avoid hackiness of overlaoding treeVewHideTitle
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 8fe55b9a6..abe50e011 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -190,7 +190,8 @@ export interface DocumentOptions { _stayInCollection?: boolean;// whether the document should remain in its collection when someone tries to drag and drop it elsewhere freezeChildren?: string; // whether children are now allowed to be added and or removed from a collection treeViewPreventOpen?: boolean; // ignores the treeViewOpen Doc flag which allows a treeViewItem's expand/collapse state to be independent of other views of the same document in the tree view - treeViewHideTitle?: boolean; // whether to hide the top document of a tree view + treeViewHideTitle?: boolean; // whether to hide the top document title of a tree view + treeViewHideHeader?: boolean; // whether to hide the header for a document in a tree view treeViewHideHeaderFields?: boolean; // whether to hide the drop down options for tree view items. treeViewOpen?: boolean; // whether this document is expanded in a tree view treeViewExpandedView?: string; // which field/thing is displayed when this item is opened in tree view |