diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-03-12 01:19:54 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-03-12 01:19:54 -0400 |
commit | c1e1e373b8b9afc68df8dcbbe38990378909d38f (patch) | |
tree | bdfd79b6207c668dce139f7a46c29b0f1e1cba97 /src/client/util/DragManager.ts | |
parent | cb26f129873a821b8457b9069ce8f801aa2b4e16 (diff) |
more cleanup of events
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 9bd7d5c24..4a61220a5 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -158,7 +158,7 @@ export namespace DragManager { e.preventDefault(); x += e.movementX; y += e.movementY; - if (e.shiftKey && (e.button == 2 || e.altKey)) { + if (e.shiftKey) { abortDrag(); CollectionDockingView.Instance.StartOtherDrag(doc, { pageX: e.pageX, pageY: e.pageY, preventDefault: () => { }, button: 0 }); } |