diff options
author | bobzel <zzzman@gmail.com> | 2020-08-24 18:09:48 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-24 18:09:48 -0400 |
commit | 2e4ab06f38323bba06a4d77c04da1507bac5657f (patch) | |
tree | 26daaa5b4f8c76a7e990a9ad81d6cdcae9108e71 /src/client/documents/Documents.ts | |
parent | 385fc8bbcb36b5f062f0202a4fb74bcfba00b150 (diff) |
moved contexts from properties button to properties view section
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index db32dbaec..759310241 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -825,8 +825,8 @@ export namespace Docs { export function DockDocument(documents: Array<Doc>, config: string, options: DocumentOptions, id?: string) { const inst = InstanceFromProto(Prototypes.get(DocumentType.COL), new List(documents), { treeViewLockExpandedView: true, treeViewDefaultExpandedView: "data", ...options, _viewType: CollectionViewType.Docking, dockingConfig: config }, id); - const tabs = TreeDocument(documents, { title: "On-Screen Tabs", treeViewLockExpandedView: true, treeViewDefaultExpandedView: "data" }); - const all = TreeDocument([], { title: "Off-Screen Tabs", treeViewLockExpandedView: true, treeViewDefaultExpandedView: "data" }); + const tabs = TreeDocument(documents, { title: "On-Screen Tabs", treeViewLockExpandedView: true, treeViewDefaultExpandedView: "data", system: true }); + const all = TreeDocument([], { title: "Off-Screen Tabs", treeViewLockExpandedView: true, treeViewDefaultExpandedView: "data", system: true }); Doc.GetProto(inst).data = new List<Doc>([tabs, all]); return inst; } |