From 6e0b25c5d6ab72e6285e59d0ef9f619ea4a99a3c Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 26 Jul 2020 20:25:15 -0400 Subject: Standardize hotkey action naming convention (#696) --- ext/fg/js/float.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/fg') 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; -- cgit v1.2.3