diff options
author | bobzel <zzzman@gmail.com> | 2023-04-27 22:56:56 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-04-27 22:56:56 -0400 |
commit | c27fcf300d72248e82d722e1b7ded9e0ca07f657 (patch) | |
tree | e6c99b49324c60713b59c65c8963b018f59dc1ec /src/client/documents/Documents.ts | |
parent | d3dc9938b38e89b2215d13fbc5bc92d33502e818 (diff) | |
parent | 66e5fe4d8c4c6fae768305e31b45735f563b7500 (diff) |
merged with master
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 c5b6546d7..b81ca6b2b 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -1077,7 +1077,7 @@ export namespace Docs { } export function PileDocument(documents: Array<Doc>, options: DocumentOptions, id?: string) { - return InstanceFromProto(Prototypes.get(DocumentType.COL), new List(documents), { _overflow: 'visible', _forceActive: true, _noAutoscroll: true, ...options, _viewType: CollectionViewType.Pile }, id); + return InstanceFromProto(Prototypes.get(DocumentType.COL), new List(documents), { _overflow: 'visible', enableDragWhenActive: true, _forceActive: true, _noAutoscroll: true, ...options, _viewType: CollectionViewType.Pile }, id); } export function LinearDocument(documents: Array<Doc>, options: DocumentOptions, id?: string) { |