aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/InkHandles.tsx
diff options
context:
space:
mode:
authorvkalev <vjk1883@gmail.com>2021-08-18 12:12:23 -0400
committervkalev <vjk1883@gmail.com>2021-08-18 12:12:23 -0400
commit7e439440a1d7fc3e3b29333b0502d6ed4d178309 (patch)
tree00e53bfc691fd43d0b93dfcc4050db90670168d4 /src/client/views/InkHandles.tsx
parent252c2a9dd86730e05637e1e32e8487cf064e0c98 (diff)
highlighter tool added & working
Diffstat (limited to 'src/client/views/InkHandles.tsx')
-rw-r--r--src/client/views/InkHandles.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/InkHandles.tsx b/src/client/views/InkHandles.tsx
index 0b24c3c32..b9f75f8d7 100644
--- a/src/client/views/InkHandles.tsx
+++ b/src/client/views/InkHandles.tsx
@@ -16,7 +16,6 @@ import { GestureOverlay } from "./GestureOverlay";
export interface InkHandlesProps {
inkDoc: Doc;
data: InkData;
- shape?: string;
format: number[];
ScreenToLocalTransform: () => Transform;
}
@@ -70,7 +69,6 @@ export class InkHandles extends React.Component<InkHandlesProps> {
// Accessing the current ink's data and extracting all handle points and handle lines.
const data = this.props.data;
- const shape = this.props.shape;
const handlePoints: HandlePoint[] = [];
const handleLines: HandleLine[] = [];
if (data.length >= 4) {