diff options
| author | bob <bcz@cs.brown.edu> | 2020-03-02 14:42:23 -0500 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2020-03-02 14:42:23 -0500 |
| commit | cad4ca15ec12808915b7aa901859e349144d8a50 (patch) | |
| tree | ee6b2b437f184affb39caaacdc0da3665958807c /src/client/util/DragManager.ts | |
| parent | 7bf05274e1f3c75217db11bf3d4112431f55e1b5 (diff) | |
fixed pdfs to sort of support region clippings.
Diffstat (limited to 'src/client/util/DragManager.ts')
| -rw-r--r-- | src/client/util/DragManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts index 1cfebf414..42ae704dd 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -387,8 +387,8 @@ export namespace DragManager { hideDragShowOriginalElements(); dispatchDrag(eles, e, dragData, options, finishDrag); SelectionManager.SetIsDragging(false); - options?.dragComplete?.(new DragCompleteEvent(false, dragData)); endDrag(); + options?.dragComplete?.(new DragCompleteEvent(false, dragData)); }; document.addEventListener("pointermove", moveHandler, true); document.addEventListener("pointerup", upHandler); |
