aboutsummaryrefslogtreecommitdiff
path: root/ext/fg/js/float.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-07-26 20:25:15 -0400
committerGitHub <noreply@github.com>2020-07-26 20:25:15 -0400
commit6e0b25c5d6ab72e6285e59d0ef9f619ea4a99a3c (patch)
treeed0b987d723b68be0d6bc18215e32c05a0c1d1a5 /ext/fg/js/float.js
parent313476aa926797a0072b42c1dc6a12677f34551c (diff)
Standardize hotkey action naming convention (#696)
Diffstat (limited to 'ext/fg/js/float.js')
-rw-r--r--ext/fg/js/float.js4
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;