diff options
| author | bobzel <zzzman@gmail.com> | 2024-10-08 23:07:52 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-10-08 23:07:52 -0400 |
| commit | b9fda86731a01ebfc3f21ebdd4eaf43a1c9eccc6 (patch) | |
| tree | 25ccf7f509111dc96b019b9c495e4a956dcbcf41 /src/client/views/collections/collectionFreeForm | |
| parent | 09b722789afa5d7c5edfc701978f17e4745113bc (diff) | |
yet another fix to cardView to make animations smooth - need to specifically target hidingDecorations without going using IsResizing as a hack
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
| -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 0cc63d632..d8678eebc 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -138,7 +138,7 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection return this._props.layoutEngine?.() || StrCast(this.layoutDoc._layoutEngine); } @computed get childPointerEvents() { - return SnappingManager.IsResizing + return falseSnappingManager.IsResizing ? 'none' : (this._props.childPointerEvents?.() ?? (this._props.viewDefDivClick || // |
