diff options
| author | bobzel <zzzman@gmail.com> | 2024-03-04 12:55:05 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-03-04 12:55:05 -0500 |
| commit | 49cfa95fdb3653a1224d4e5e3380e111c8e2014f (patch) | |
| tree | 193b366687111c9bc76355c5fd51e8ab1af94069 /src/client/views/InkingStroke.tsx | |
| parent | 63f119fb99dc1f658b7e3edad5da64e9cf686ada (diff) | |
changes to restore template menu and fix freeform templates to always show contents. Fix for alt-dropping an image to replace another image.
Diffstat (limited to 'src/client/views/InkingStroke.tsx')
| -rw-r--r-- | src/client/views/InkingStroke.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/InkingStroke.tsx b/src/client/views/InkingStroke.tsx index 92644d3c5..122e5c4c3 100644 --- a/src/client/views/InkingStroke.tsx +++ b/src/client/views/InkingStroke.tsx @@ -438,7 +438,7 @@ export class InkingStroke extends ViewBoxBaseComponent<FieldViewProps>() impleme <svg className="inkStroke" style={{ - transform: isInkMask ? `rotate(-${NumCast(this._props.CollectionFreeFormDocumentView?.()._props.w_Rotation?.() ?? 0)}deg) translate(${InkingStroke.MaskDim / 2}px, ${InkingStroke.MaskDim / 2}px)` : undefined, + transform: isInkMask ? `rotate(-${NumCast(this._props.CollectionFreeFormDocumentView?.()._props.rotation ?? 0)}deg) translate(${InkingStroke.MaskDim / 2}px, ${InkingStroke.MaskDim / 2}px)` : undefined, // mixBlendMode: this.layoutDoc.tool === InkTool.Highlighter ? 'multiply' : 'unset', cursor: this._props.isSelected() ? 'default' : undefined, }} |
