aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
index 50ccc77cb..88422cbd4 100644
--- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
+++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
@@ -704,7 +704,6 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection
scrollPan = (e: WheelEvent | { deltaX: number; deltaY: number }): void => {
const dx = e.deltaX;
const dy = e.deltaY;
- console.log("2: ", dx, dy);
this.setPan(NumCast(this.Document._panX) - dx, NumCast(this.Document._panY) - dy, 0, true);
};
@@ -1024,7 +1023,6 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection
} else if (this.props.isContentActive(true) && !this.Document._isGroup) {
const dx = e.deltaX;
const dy = e.deltaY;
- console.log("1: ", dx, dy);
if (e.shiftKey) {
!this.props.isAnnotationOverlayScrollable && this.scrollPan({ deltaX: dy, deltaY: 0 });
} else {