diff options
author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-04 18:39:09 -0400 |
---|---|---|
committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-04 18:39:09 -0400 |
commit | ad78429768c411eba47e2b8a197efe4d1e9c3824 (patch) | |
tree | 608e52fb1370d0de380023197d70d738e1db00cb /src/client/util/DragManager.ts | |
parent | 8fc3fe167d81631cb2f2010f197099c0ae6988a1 (diff) | |
parent | d236da11dcd635440eecb897a195df8ade4ca7b0 (diff) |
Merge branch 'master' of github-tsch-brown:browngraphicslab/Dash-Web
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 d4b1bc8f4..ce1f9d890 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -448,7 +448,7 @@ export namespace DragManager { x: e.x, y: e.y, data: dragData, - mods: e.altKey ? "AltKey" : "" + mods: e.altKey ? "AltKey" : e.ctrlKey ? "CtrlKey" : "" } }) ); |