diff options
author | bobzel <zzzman@gmail.com> | 2020-09-13 10:22:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-13 10:22:49 -0400 |
commit | e25b4985c8716e39cb586e5ce313a093048ceab6 (patch) | |
tree | 957b5e1d274624721437c9ad96549a81e24888b6 /src/client/documents/Documents.ts | |
parent | bf8a62fbb1b70bc013ec2f342930f35d6108065b (diff) | |
parent | 1508c81e2193f54da586f30da6f547bb1b89f976 (diff) |
Merge pull request #715 from browngraphicslab/bug_fixes
Bug fixes
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 c4100c6d0..8fe55b9a6 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -763,7 +763,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, ...options, _viewType: CollectionViewType.Pile }, id); + return InstanceFromProto(Prototypes.get(DocumentType.COL), new List(documents), { _chromeStatus: "collapsed", backgroundColor: "black", forceActive: true, _noAutoscroll: true, ...options, _viewType: CollectionViewType.Pile }, id); } export function LinearDocument(documents: Array<Doc>, options: DocumentOptions, id?: string) { |