diff options
author | bobzel <zzzman@gmail.com> | 2022-11-11 00:15:46 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-11-11 00:15:46 -0500 |
commit | 493faff1b3c84d8f31796e8059a3eaa5bd80fbd6 (patch) | |
tree | 393ae123c980b63095638ab05e660d3ba49ba5d0 /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | |
parent | e7995c366381e5f813ddcb3babc90c8b51e407b6 (diff) |
fixed converting strokes to inkMasks. cleaned up rendering inkStrkes w/ w/o closed/borders. fixed highlighting strokes not to show boundingbox.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx')
-rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index b83d911c7..d44c2f160 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -1496,7 +1496,7 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection elements.push({ ele: this.getChildDocView(entry[1]), bounds: this.childDataProvider(entry[1].pair.layout, entry[1].replica), - inkMask: BoolCast(entry[1].pair.layout.isInkMask) ? NumCast(entry[1].pair.layout.opacity) : -1, + inkMask: BoolCast(entry[1].pair.layout.isInkMask) ? NumCast(entry[1].pair.layout.opacity, 1) : -1, }) ); |