diff options
Diffstat (limited to 'src')
-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 { |