diff options
| author | bobzel <zzzman@gmail.com> | 2024-01-18 16:25:58 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-01-18 16:25:58 -0500 |
| commit | de2536ad11391b6a1ce1a98c08987a93b177e188 (patch) | |
| tree | c25cb0d7685d885eb250663c1a0c59bd41b93d32 /src/client/views/nodes/DocumentView.tsx | |
| parent | 5b5730a7df073659cbb6c326f748f7fcbe6625e8 (diff) | |
from last
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
| -rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 5345ef0d8..c2b9dcbbd 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -235,7 +235,7 @@ export interface DocumentViewProps extends DocumentViewSharedProps { * these props correspond to things that the DocumentView creates and thus doesn't need to receive as a prop */ export interface DocumentViewInternalSharedProps { - DocumentView?: () => DocumentView; + DocumentView: () => DocumentView; select: (ctrlPressed: boolean, shiftPress?: boolean) => void; isSelected: () => boolean; NativeDimScaling?: () => number; // scaling the DocumentView does to transform its contents into its panel & needed by ScreenToLocal @@ -276,7 +276,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps } // this makes mobx trace() statements more descriptive public get DocumentView() { - return this._props.DocumentView!; + return this._props.DocumentView; } public get ContentDiv() { |
