diff options
| author | bobzel <zzzman@gmail.com> | 2020-09-08 21:20:47 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-09-08 21:20:47 -0400 |
| commit | e50297237ee3dfa1e652c0d46cb9d860e5cd5b20 (patch) | |
| tree | f2a0a2c5bd73aeea746716d2404a584b25029265 /src/client/views/collections/CollectionSubView.tsx | |
| parent | a60b9998dc6cd05137cf3fe46714c3069843b57b (diff) | |
fixes to make nativesize work for all collections and templates.
Diffstat (limited to 'src/client/views/collections/CollectionSubView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionSubView.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionSubView.tsx b/src/client/views/collections/CollectionSubView.tsx index 572ee88b3..37212a0fa 100644 --- a/src/client/views/collections/CollectionSubView.tsx +++ b/src/client/views/collections/CollectionSubView.tsx @@ -28,6 +28,7 @@ export interface CollectionViewProps extends FieldViewProps { PanelWidth: () => number; PanelHeight: () => number; VisibleHeight?: () => number; + childIgnoreNativeSize?: boolean; setPreviewCursor?: (func: (x: number, y: number, drag: boolean) => void) => void; rootSelected: (outsideReaction?: boolean) => boolean; fieldKey: string; @@ -40,6 +41,7 @@ export interface SubCollectionViewProps extends CollectionViewProps { children?: never | (() => JSX.Element[]) | React.ReactNode; ChildLayoutTemplate?: () => Doc; childOpacity?: () => number; + childIgnoreNativeSize?: boolean; ChildLayoutString?: string; childClickScript?: ScriptField; childDoubleClickScript?: ScriptField; |
