Skip to content

Commit

Permalink
Make desktop iconview drop be shortcut by default (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersevenrud committed Sep 12, 2019
1 parent fef05a3 commit 5ab06a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adapters/ui/iconview.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const tapper = doubleTap();

const validVfsDrop = data => data && data.path;

const onDropAction = actions => (ev, data, files, shortcut = false) => {
const onDropAction = actions => (ev, data, files, shortcut = true) => {
if (validVfsDrop(data)) {
actions.addEntry({entry: data, shortcut});
} else if (files.length > 0) {
Expand Down

0 comments on commit 5ab06a4

Please sign in to comment.