diff options
author | bobzel <zzzman@gmail.com> | 2024-11-12 23:02:25 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-11-12 23:02:25 -0500 |
commit | f1b92f4be6df5a273ab3cf02b51ed8dc23521207 (patch) | |
tree | f1234355fc0cce39ba44031b3b71daa4275bdb27 | |
parent | 89ced11bf79543ca1c56a5fe610d301f29229c75 (diff) |
don't include ink strokes in freeform clusters
-rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormClusters.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormClusters.ts b/src/client/views/collections/collectionFreeForm/CollectionFreeFormClusters.ts index f8958b141..3838852dd 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormClusters.ts +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormClusters.ts @@ -186,7 +186,7 @@ export class CollectionFreeFormClusters { case StyleProp.BackgroundColor: { const cluster = NumCast(doc?.layout_cluster); - if (this.Document._freeform_useClusters && doc?.type !== DocumentType.IMG) { + if (this.Document._freeform_useClusters && doc?.type !== DocumentType.IMG && !doc.layout_isSvg) { if (this._clusterSets.length <= cluster) { setTimeout(() => doc && this.addDocument(doc)); } else { |