mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-07-29 02:30:29 +00:00
chore: use command key to select multiple files on mac (#1183)
This commit is contained in:
parent
ac3673e111
commit
bc4a6462ce
1 changed files with 1 additions and 1 deletions
|
|
@ -202,7 +202,7 @@ export default {
|
|||
return
|
||||
}
|
||||
|
||||
if (!this.user.singleClick && !event.ctrlKey && !this.$store.state.multiple) this.resetSelected()
|
||||
if (!this.user.singleClick && !event.ctrlKey && !event.metaKey && !this.$store.state.multiple) this.resetSelected()
|
||||
this.addSelected(this.index)
|
||||
},
|
||||
dblclick: function () {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue