diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/collections/CollectionFreeFormView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionFreeFormView.tsx b/src/client/views/collections/CollectionFreeFormView.tsx index ded1e3785..5a5f9197d 100644 --- a/src/client/views/collections/CollectionFreeFormView.tsx +++ b/src/client/views/collections/CollectionFreeFormView.tsx @@ -166,7 +166,7 @@ export class CollectionFreeFormView extends CollectionViewBase { @action addKVP(doc: Document) { let fields = doc.fields; - // aefawefwaef + //TODO: return kvp } @computed get backgroundLayout(): string | undefined { @@ -229,6 +229,7 @@ export class CollectionFreeFormView extends CollectionViewBase { noScaling = () => 1; render() { + //TODO: put KVP stuff in this function const panx: number = this.props.Document.GetNumber(KeyStore.PanX, 0) + this.centeringShiftX; const pany: number = this.props.Document.GetNumber(KeyStore.PanY, 0) + this.centeringShiftY; return ( @@ -246,7 +247,6 @@ export class CollectionFreeFormView extends CollectionViewBase { {this.backgroundView} {this.views} </div> - <!-- put fale stuff here> {this.overlayView} </div> ); |