diff options
author | bobzel <zzzman@gmail.com> | 2020-09-17 14:49:43 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-17 14:49:43 -0400 |
commit | fcc3a497551c5de6ccf44d5bb2dc2af48cb7b1fb (patch) | |
tree | ae52279fb77cb6fb1d79fc63e85cfdf3180997d5 /src/client/documents/Documents.ts | |
parent | 04ab7a6a6d206014f99b46a6a8771c205cdb079a (diff) |
simplified novice colleciotn menu. fixed Carousel 3D
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 586c5f67c..ecb1342f4 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -771,7 +771,7 @@ export namespace Docs { } export function PileDocument(documents: Array<Doc>, options: DocumentOptions, id?: string) { - return InstanceFromProto(Prototypes.get(DocumentType.COL), new List(documents), { _chromeStatus: "collapsed", backgroundColor: "black", forceActive: true, _noAutoscroll: true, ...options, _viewType: CollectionViewType.Pile }, id); + return InstanceFromProto(Prototypes.get(DocumentType.COL), new List(documents), { _chromeStatus: "collapsed", backgroundColor: "black", _noAutoscroll: true, ...options, _viewType: CollectionViewType.Pile }, id); } export function LinearDocument(documents: Array<Doc>, options: DocumentOptions, id?: string) { |