diff options
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; |