From 30165e8d6a3ea8ce0a812a2fb171c712f4b15e35 Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Tue, 2 Oct 2018 08:40:33 +0100 Subject: [PATCH] Electron: Fixes #798: Enable Select All shortcut in macOS --- ElectronClient/app/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ElectronClient/app/app.js b/ElectronClient/app/app.js index 43ca07e9da..4a916d600e 100644 --- a/ElectronClient/app/app.js +++ b/ElectronClient/app/app.js @@ -420,6 +420,10 @@ class Application extends BaseApplication { label: _('Paste'), role: 'paste', accelerator: 'CommandOrControl+V', + }, { + label: _('Select all'), + role: 'selectall', + accelerator: 'CommandOrControl+A', }, { type: 'separator', screens: ['Main'],