mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-02-18 00:02:02 +03:00
fix: Ctrl key not being handled on Windows (#715)
This commit is contained in:
parent
baf17c7695
commit
ba77afb35d
1 changed files with 1 additions and 1 deletions
|
@ -204,5 +204,5 @@ export function isMac() {
|
|||
}
|
||||
|
||||
export function doesCommand(e) {
|
||||
return isMac ? e.metaKey : e.ctrlKey
|
||||
return isMac() ? e.metaKey : e.ctrlKey
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue