From 620225bb2d4e15f713a257a21415bfabdd3f95ad Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Thu, 30 Nov 2017 18:44:37 +0000 Subject: [PATCH] Electron: Fixed copy/cut/paste problem in macOS --- ElectronClient/app/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ElectronClient/app/app.js b/ElectronClient/app/app.js index f56a7c81a..c39f1a616 100644 --- a/ElectronClient/app/app.js +++ b/ElectronClient/app/app.js @@ -235,12 +235,12 @@ class Application extends BaseApplication { }, { label: _('Cut'), screens: ['Main'], - role: 'copy', + role: 'cut', accelerator: 'CommandOrControl+X', }, { label: _('Paste'), screens: ['Main'], - role: 'copy', + role: 'paste', accelerator: 'CommandOrControl+V', }, { type: 'separator',