diff options
| author | bobzel <zzzman@gmail.com> | 2023-04-10 11:32:44 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-04-10 11:32:44 -0400 |
| commit | 68c6c36af823255824a6b0692e8c33618c2d7ca2 (patch) | |
| tree | bad87616a8678b1bb1d88415912e3e2e8417aec2 /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | |
| parent | bfa2a11f63fc373dd78836753c61441a13ee5d0a (diff) | |
fixed brushing of fonticon boxes with dropdowns. made line charts use computed values instead of observables
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index 9fe8f5f49..9d4a788db 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -664,8 +664,8 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection ActiveIsInkMask(), { title: 'ink stroke', - x: B.x - ActiveInkWidth() / 2, - y: B.y - ActiveInkWidth() / 2, + x: B.x - (ActiveInkWidth() * this.props.ScreenToLocalTransform().Scale) / 2, + y: B.y - (ActiveInkWidth() * this.props.ScreenToLocalTransform().Scale) / 2, _width: B.width + ActiveInkWidth() * this.props.ScreenToLocalTransform().Scale, _height: B.height + ActiveInkWidth() * this.props.ScreenToLocalTransform().Scale, } |
