diff --git a/client/listeners/index.js b/client/listeners/index.js index 6df38853..02e5be21 100644 --- a/client/listeners/index.js +++ b/client/listeners/index.js @@ -420,7 +420,10 @@ function dragndrop() { if (dirFiles.length) return DOM.uploadDirectory(dirFiles); - return CloudCmd.Operation.show('copy'); + const {Operation} = CloudCmd; + const operation = event.shiftKey ? 'move' : 'copy'; + + return Operation.show(operation); }; /**