diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-07-26 20:25:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-26 20:25:15 -0400 |
commit | 6e0b25c5d6ab72e6285e59d0ef9f619ea4a99a3c (patch) | |
tree | ed0b987d723b68be0d6bc18215e32c05a0c1d1a5 /ext/fg/js | |
parent | 313476aa926797a0072b42c1dc6a12677f34551c (diff) |
Standardize hotkey action naming convention (#696)
Diffstat (limited to 'ext/fg/js')
-rw-r--r-- | ext/fg/js/float.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/float.js b/ext/fg/js/float.js index 513ee178..fa571fcc 100644 --- a/ext/fg/js/float.js +++ b/ext/fg/js/float.js @@ -32,10 +32,10 @@ class DisplayFloat extends Display { ]); this.registerActions([ - ['copy-host-selection', () => this._copySelection()] + ['copyHostSelection', () => this._copySelection()] ]); this.registerHotkeys([ - {key: 'C', modifiers: ['ctrl'], action: 'copy-host-selection'} + {key: 'C', modifiers: ['ctrl'], action: 'copyHostSelection'} ]); this.autoPlayAudioDelay = 400; |