diff options
| author | Bob Zeleznik <zzzman@gmail.com> | 2019-08-13 00:11:52 -0400 |
|---|---|---|
| committer | Bob Zeleznik <zzzman@gmail.com> | 2019-08-13 00:11:52 -0400 |
| commit | 87e79b5d230cee0d3f5df399b4fee0c62ccb5385 (patch) | |
| tree | cef9e3822c6a36f6b3c6638603367d48affce7ad /src/client/util/DragManager.ts | |
| parent | 6f5bfce36ce53dd697b19b5498abe1ce7980d6bb (diff) | |
fixed stacking layouts. added image cross fading.
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" : "" } }) ); |
