diff options
| author | bobzel <zzzman@gmail.com> | 2023-07-05 16:15:27 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-07-05 16:15:27 -0400 |
| commit | 5a9af979cc293d0e3843270ee053c24bf0eb6ef5 (patch) | |
| tree | 1c03d5fb55a97f5e3da96a448af5079ec2b0e42b /src/client/views/collections/TabDocView.tsx | |
| parent | bf609fdadc164da5663671a0c42c3a13056ee376 (diff) | |
changed acl inheritance for docking views.
Diffstat (limited to 'src/client/views/collections/TabDocView.tsx')
| -rw-r--r-- | src/client/views/collections/TabDocView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/TabDocView.tsx b/src/client/views/collections/TabDocView.tsx index 4d780f46b..3473eee18 100644 --- a/src/client/views/collections/TabDocView.tsx +++ b/src/client/views/collections/TabDocView.tsx @@ -262,7 +262,7 @@ export class TabDocView extends React.Component<TabDocViewProps> { pinDoc.presMovement = doc.type === DocumentType.SCRIPTING || pinProps?.pinDocLayout ? PresMovement.None : PresMovement.Zoom; pinDoc.presDuration = pinDoc.presDuration ?? 1000; pinDoc.groupWithUp = false; - pinDoc.embedContainer = curPres; + Doc.SetContainer(pinDoc, curPres); // these should potentially all be props passed down by the CollectionTreeView to the TreeView elements. That way the PresBox could configure all of its children at render time pinDoc.treeViewRenderAsBulletHeader = true; // forces a tree view to render the document next to the bullet in the header area pinDoc.treeViewHeaderWidth = '100%'; // forces the header to grow to be the same size as its largest sibling. |
