Skip to content

Commit

Permalink
make right ctrl + left click work to make field editable
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueGreenMagick committed Jul 11, 2023
1 parent 598e60a commit 6bd4fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/addon/web/global_card.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
}

const isCtrlKey = function (keycode) {
return ['ControlLeft', 'MetaLeft'].includes(keycode)
return ['ControlLeft', 'MetaLeft', 'ControlRight', 'MetaRight'].includes(keycode)
}

window.addEventListener('keydown', function (ev) {
Expand Down

0 comments on commit 6bd4fba

Please sign in to comment.