diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-04-02 20:59:10 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-04-02 20:59:10 -0400 |
| commit | 7304217fd9559c35e34c16d5e4e025875adc3252 (patch) | |
| tree | 14033a56f0e53b3f7467ca8abe2be3ec170f0abd /src/client/views/InkingCanvas.tsx | |
| parent | 85e1eeb77241303307ff5f98d550663e18b807b8 (diff) | |
put in a patch for inking up to canvas limit of 8192
Diffstat (limited to 'src/client/views/InkingCanvas.tsx')
| -rw-r--r-- | src/client/views/InkingCanvas.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/InkingCanvas.tsx b/src/client/views/InkingCanvas.tsx index 123ff679b..fcf6db390 100644 --- a/src/client/views/InkingCanvas.tsx +++ b/src/client/views/InkingCanvas.tsx @@ -18,7 +18,7 @@ interface InkCanvasProps { @observer export class InkingCanvas extends React.Component<InkCanvasProps> { - static InkOffset: number = 50000; + static InkOffset: number = 4096; private _currentStrokeId: string = ""; public static IntersectStrokeRect(stroke: StrokeData, selRect: { left: number, top: number, width: number, height: number }): boolean { return stroke.pathData.reduce((inside, val) => inside || |
