diff options
author | bobzel <zzzman@gmail.com> | 2024-04-14 16:37:27 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-04-14 16:37:27 -0400 |
commit | a374ab9992962ebb6c4af43b82348c706330b58e (patch) | |
tree | 91b196822e3e89ac87f07fe3df9d037ead82f5ed /src | |
parent | 116b2d692e93a14d7ef68c859edf4b7f723a9f54 (diff) |
from last
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index 9a0f34074..60f7662ff 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -617,13 +617,7 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection case InkTool.Pen: break; // the GestureOverlay handles ink stroke input -- either as gestures, or drying as ink strokes that are added to document views case InkTool.StrokeEraser: - this._batch = UndoManager.StartBatch('collectionErase'); - setupMoveUpEvents(this, e, this.onEraserMove, this.onEraserUp, emptyFunction); - break; case InkTool.SegmentEraser: - this._batch = UndoManager.StartBatch('collectionErase'); - setupMoveUpEvents(this, e, this.onEraserMove, this.onEraserUp, emptyFunction); - break; case InkTool.RadiusEraser: this._batch = UndoManager.StartBatch('collectionErase'); setupMoveUpEvents(this, e, this.onEraserMove, this.onEraserUp, emptyFunction); |