aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-11-02 14:11:25 -0500
committerbobzel <zzzman@gmail.com>2020-11-02 14:11:25 -0500
commit0ddd75da0f0b42cf3e1692e1cb1761c0e70ed551 (patch)
tree86055a1d7cb717496f31da882206bae68b2db9e7
parentcbe6374fc4913e45d26a28e310afad9dd2418a33 (diff)
fixed up dropping documents into a collection that doesn't have an activeFrame set so that they can be resized
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
index fdcfb00d8..58a9c4974 100644
--- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
+++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
@@ -169,14 +169,23 @@ export class CollectionFreeFormView extends CollectionSubView<PanZoomDocument, P
if (newBox.activeFrame !== undefined) {
const x = newBox.x;
const y = newBox.y;
+ const w = newBox._width;
+ const h = newBox._height;
delete newBox["x-indexed"];
delete newBox["y-indexed"];
+ delete newBox["w-indexed"];
+ delete newBox["h-indexed"];
delete newBox["opacity-indexed"];
+ delete newBox._width;
+ delete newBox._height;
delete newBox.x;
delete newBox.y;
+ delete newBox.opacity;
delete newBox.activeFrame;
newBox.x = x;
newBox.y = y;
+ newBox._width = w;
+ newBox._height = h;
}
}
if (this.Document._currentFrame !== undefined && !this.props.isAnnotationOverlay) {