Skip to content

Commit 5ab06a4

Browse files
committed
Make desktop iconview drop be shortcut by default (#51)
1 parent fef05a3 commit 5ab06a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/adapters/ui/iconview.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const tapper = doubleTap();
3636

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

39-
const onDropAction = actions => (ev, data, files, shortcut = false) => {
39+
const onDropAction = actions => (ev, data, files, shortcut = true) => {
4040
if (validVfsDrop(data)) {
4141
actions.addEntry({entry: data, shortcut});
4242
} else if (files.length > 0) {

0 commit comments

Comments
 (0)