diff options
author | bobzel <zzzman@gmail.com> | 2021-02-16 23:58:54 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-02-16 23:58:54 -0500 |
commit | 1a31f3ae5d1b90deb9888bb4df863079f4837f53 (patch) | |
tree | 3af8e0ce5a68b3ef4e46ee2e6b49d88f5b208a49 /src/client/documents/Documents.ts | |
parent | 05b87c394731fbed21f9b358967c337ce294272d (diff) |
added a file system mode for tree View. ctrl-f to create file system.
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 7502aa685..2d8601dfe 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -144,6 +144,7 @@ export interface DocumentOptions { _layers?: List<string>; _raiseWhenDragged?: boolean; // whether a document is brought to front when dragged. isLinkButton?: boolean; + isFolder?: boolean; _columnWidth?: number; _fontSize?: string; _fontWeight?: number; @@ -211,7 +212,7 @@ export interface DocumentOptions { treeViewExpandedView?: string; // which field/thing is displayed when this item is opened in tree view treeViewChecked?: ScriptField; // script to call when a tree view checkbox is checked treeViewTruncateTitleWidth?: number; - treeViewOutlineMode?: boolean; // whether slide should function as a text outline + treeViewType?: string; // whether treeview is a Slide, file system, or (default) collection hierarchy treeViewLockExpandedView?: boolean; // whether the expanded view can be changed treeViewDefaultExpandedView?: string; // default expanded view sidebarColor?: string; // background color of text sidebar |