diff options
| author | bobzel <zzzman@gmail.com> | 2024-09-19 00:05:28 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-09-19 00:05:28 -0400 |
| commit | 18056735bdeddca55f530d41259874a4ed3ae200 (patch) | |
| tree | 736c373a8cc1187207a912ce64b0204507b40a75 /src/client/views/collections/CollectionCardDeckView.tsx | |
| parent | cacd3a933fe874b798b422847c963b25458c3f60 (diff) | |
fixed hiding decorations when animating card transitions
Diffstat (limited to 'src/client/views/collections/CollectionCardDeckView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionCardDeckView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionCardDeckView.tsx b/src/client/views/collections/CollectionCardDeckView.tsx index 5a00fb673..3dfb280f4 100644 --- a/src/client/views/collections/CollectionCardDeckView.tsx +++ b/src/client/views/collections/CollectionCardDeckView.tsx @@ -646,7 +646,7 @@ export class CollectionCardView extends CollectionSubView() { className={`card-item${isSelected ? '-active' : anySelected ? '-inactive' : ''}`} onPointerUp={() => { // this turns off documentDecorations during a transition, then turns them back on afterward. - SnappingManager.SetIsResizing(this.Document[Id]); + SnappingManager.SetIsResizing(doc[Id]); setTimeout( action(() => { SnappingManager.SetIsResizing(undefined); |
