diff options
author | bobzel <zzzman@gmail.com> | 2021-03-29 19:04:08 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-29 19:04:08 -0400 |
commit | 7db0fe589afa3281894afb0a0d3bd6b9983c9d33 (patch) | |
tree | 3c8f81ddb5049c4c15c4ca4f4487cb63e7539049 /src/client/views/nodes/FieldView.tsx | |
parent | fa6aa3f3d13cade1cd46d954dbfee6f8566bcc86 (diff) |
still cleaning up all the active/selection code.
Diffstat (limited to 'src/client/views/nodes/FieldView.tsx')
-rw-r--r-- | src/client/views/nodes/FieldView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/FieldView.tsx b/src/client/views/nodes/FieldView.tsx index 97f53aac0..0fc7a752f 100644 --- a/src/client/views/nodes/FieldView.tsx +++ b/src/client/views/nodes/FieldView.tsx @@ -18,8 +18,8 @@ export interface FieldViewProps extends DocumentViewSharedProps { fieldKey: string; scrollOverflow?: boolean; // bcz: would like to think this can be avoided -- need to look at further - active: (outsideReaction?: boolean) => boolean; select: (isCtrlPressed: boolean) => void; + isContentActive: (outsideReaction?: boolean) => boolean; isSelected: (outsideReaction?: boolean) => boolean; scaling?: () => number; setHeight: (height: number) => void; |