diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-07-04 18:20:54 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-07-04 18:20:54 -0400 |
commit | d236da11dcd635440eecb897a195df8ade4ca7b0 (patch) | |
tree | 045279b216721fa3479060faa4bf25aedbe542a0 /src/client/util/DragManager.ts | |
parent | 79f3c8151aa0a52037ae726c12d16a26758ea3d9 (diff) |
added dropping and reordering within Stacking views. needs GUI feedback.
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" : "" } }) ); |