From 38016b205c7de21f69fc520f08dbef2c3ac5979a Mon Sep 17 00:00:00 2001 From: Paul Betts Date: Thu, 25 Sep 2014 13:40:09 -0700 Subject: [PATCH] Fix Copy / Cut's accelerators Copy/Cut/Paste always have the same accelerator in every app --- menus/win32.cson | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/menus/win32.cson b/menus/win32.cson index d002c2428..588e21978 100644 --- a/menus/win32.cson +++ b/menus/win32.cson @@ -33,8 +33,8 @@ { label: '&Undo', command: 'core:undo' } { label: '&Redo', command: 'core:redo' } { type: 'separator' } - { label: '&Cut', command: 'core:cut' } - { label: 'C&opy', command: 'core:copy' } + { label: 'Cu&t', command: 'core:cut' } + { label: '&Copy', command: 'core:copy' } { label: 'Copy Pat&h', command: 'editor:copy-path' } { label: '&Paste', command: 'core:paste' } { label: 'Select &All', command: 'core:select-all' }