diff options
author | geireann <geireann.lindfield@gmail.com> | 2022-10-24 14:58:03 -0400 |
---|---|---|
committer | geireann <geireann.lindfield@gmail.com> | 2022-10-24 14:58:03 -0400 |
commit | c06e87b8128acb9ed2570536fc500a2bb670abf4 (patch) | |
tree | 42591c4532de9690295dcb75e40cab584eb086ee | |
parent | 68ab5eb3dfa981d16ccb632a8dff015866ca13e2 (diff) |
removed print lines
-rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 2 |
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 { |