diff options
| -rw-r--r-- | src/client/views/InkTranscription.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/InkTranscription.tsx b/src/client/views/InkTranscription.tsx index 0e8ccd57b..ef4510f38 100644 --- a/src/client/views/InkTranscription.tsx +++ b/src/client/views/InkTranscription.tsx @@ -142,8 +142,8 @@ export class InkTranscription extends React.Component { return { "pointerType": "PEN", "pointerId": 1, - "x": stroke.map(point => (point.X - panX) * scale), - "y": stroke.map(point => (point.Y - panY) * scale), + "x": stroke.map(point => point.X), + "y": stroke.map(point => point.Y), "t": new Array(stroke.length).fill(time), "p": new Array(stroke.length).fill(1.0) }; |
