diff options
| author | bobzel <zzzman@gmail.com> | 2023-06-14 21:54:06 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-06-14 21:54:06 -0400 |
| commit | 56347a868430af6eb78efc3dcb88f29165d1b30e (patch) | |
| tree | 1bbf72fe328e1873af0df8fbaf1eb01827b89f8a /src/client/views/InkStrokeProperties.ts | |
| parent | bf1198fbe73847087b1ec8e00a43306816b3508a (diff) | |
fixed ink rotation to not make stroke fly apart.
Diffstat (limited to 'src/client/views/InkStrokeProperties.ts')
| -rw-r--r-- | src/client/views/InkStrokeProperties.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/InkStrokeProperties.ts b/src/client/views/InkStrokeProperties.ts index d28981e17..abc4381a6 100644 --- a/src/client/views/InkStrokeProperties.ts +++ b/src/client/views/InkStrokeProperties.ts @@ -202,7 +202,6 @@ export class InkStrokeProperties { @action rotateInk = (inkStrokes: DocumentView[], angle: number, scrpt: PointData) => { this.applyFunction(inkStrokes, (view: DocumentView, ink: InkData, xScale: number, yScale: number, inkStrokeWidth: number) => { - view.rootDoc.rotation = NumCast(view.rootDoc.rotation) + angle; const inkCenterPt = view.ComponentView?.ptFromScreen?.(scrpt); return !inkCenterPt ? ink |
