diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-07-04 23:18:13 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-07-04 23:18:13 -0400 |
commit | ad87140f4a52984d754c06fcb55e66a0cc935ce2 (patch) | |
tree | 301c49a2281c9c19373a7e9eb67f3550ec090d15 /src/client/views/nodes/ImageBox.tsx | |
parent | 1b02511185e22349e68bab1f6b8ce74b874a3ba5 (diff) |
fixed shift-dragging of documents
Diffstat (limited to 'src/client/views/nodes/ImageBox.tsx')
-rw-r--r-- | src/client/views/nodes/ImageBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/ImageBox.tsx b/src/client/views/nodes/ImageBox.tsx index dd4e4262d..5da52f4c2 100644 --- a/src/client/views/nodes/ImageBox.tsx +++ b/src/client/views/nodes/ImageBox.tsx @@ -95,7 +95,7 @@ export class ImageBox extends DocComponent<FieldViewProps, ImageDocument>(ImageD onPointerDown = (e: React.PointerEvent): void => { if (e.shiftKey && e.ctrlKey) { e.stopPropagation(); // allows default system drag drop of images with shift+ctrl only - } else e.preventDefault(); + } // if (Date.now() - this._lastTap < 300) { // if (e.buttons === 1) { // this._downX = e.clientX; |