From 906c997ccba45f80f15f90fa82e00a4d9e7e0361 Mon Sep 17 00:00:00 2001 From: Vulich Fernando <46904390+fvulich@users.noreply.github.com> Date: Fri, 29 Nov 2019 12:28:46 -0300 Subject: [PATCH] Fix Copy/Paste READY READY READY READY --- app/ux/WebView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ux/WebView.js b/app/ux/WebView.js index 8099d09c..62252278 100644 --- a/app/ux/WebView.js +++ b/app/ux/WebView.js @@ -524,7 +524,7 @@ Ext.define('Rambox.ux.WebView',{ input.key = keys[input.key] ? keys[input.key] : input.key; } - if ( input.key === 'F11' || input.key === 'F12' || input.key === 'q' || (input.key === 'F1' && modifiers.includes('control'))) return; + if ( input.key === 'F11' || input.key === 'a' || input.key === 'A' || input.key === 'F12' || input.key === 'q' || (input.key === 'F1' && modifiers.includes('control'))) return; require('electron').remote.getCurrentWebContents().sendInputEvent({ type: input.type,