Skip to content

Commit

Permalink
Electron: Fixed copy/cut/paste problem in macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
laurent22 committed Nov 30, 2017
1 parent ddb73c8 commit 620225b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ElectronClient/app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 620225b

Please sign in to comment.