diff options
author | andrewdkim <adkim414@gmail.com> | 2019-08-14 11:55:16 -0400 |
---|---|---|
committer | andrewdkim <adkim414@gmail.com> | 2019-08-14 11:55:16 -0400 |
commit | 46f4945d38ca9423f1114fb4c4b4f4a72389a89e (patch) | |
tree | 49de0599cc94f504e4bb5e46f889cb01bbc1b641 /src/client/util/DragManager.ts | |
parent | f43509c132b5302b9983667aaf99251051b38b59 (diff) | |
parent | 7a71c9005189e111e9c9d197d02cc9a6a1bce389 (diff) |
merge from master
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 a7aaaed7c..0b6d9b5e5 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -490,7 +490,7 @@ export namespace DragManager { x: e.x, y: e.y, data: dragData, - mods: e.altKey ? "AltKey" : e.ctrlKey ? "CtrlKey" : "" + mods: e.altKey ? "AltKey" : e.ctrlKey ? "CtrlKey" : e.metaKey ? "MetaKey" : "" } }) ); |