aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionFreeFormView.tsx
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2019-02-22 15:24:42 -0500
committerbob <bcz@cs.brown.edu>2019-02-22 15:24:42 -0500
commit1e83695f1380b7824d36bdc55305c44117f6da2c (patch)
tree3a2994e6c74657f168e9d9d8cf76ab98c45024c1 /src/client/views/collections/CollectionFreeFormView.tsx
parent441775f3e16e56e1516c8fa93d12e4faaae03b38 (diff)
changed PanelSize to PanelWidth/Height
Diffstat (limited to 'src/client/views/collections/CollectionFreeFormView.tsx')
-rw-r--r--src/client/views/collections/CollectionFreeFormView.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionFreeFormView.tsx b/src/client/views/collections/CollectionFreeFormView.tsx
index b8312aff7..e31fb25b9 100644
--- a/src/client/views/collections/CollectionFreeFormView.tsx
+++ b/src/client/views/collections/CollectionFreeFormView.tsx
@@ -187,7 +187,8 @@ export class CollectionFreeFormView extends CollectionViewBase {
ScreenToLocalTransform={this.getTransform}
isTopMost={false}
Scaling={1}
- PanelSize={[doc.GetNumber(KeyStore.Width, 0), doc.GetNumber(KeyStore.Height, 0)]}
+ PanelWidth={doc.GetNumber(KeyStore.Width, 0)}
+ PanelHeight={doc.GetNumber(KeyStore.Height, 0)}
ContainingCollectionView={this.props.CollectionView} />);
})
}