From 8a1cca629b3ca550f1a2c7962932ea3f4e3bd460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaros=C5=82aw=20Sadzi=C5=84ski?= Date: Wed, 27 Apr 2022 20:47:26 +0200 Subject: [PATCH] (core) Changing shortcut for Duplicate row command Summary: Changing keyboard shortcut for Duplicate row from Ctrl+Shift+D to Mod+Shift+D Test Plan: existing test Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D3401 --- app/client/components/commandList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/components/commandList.js b/app/client/components/commandList.js index 58a34bd4..b82b26e9 100644 --- a/app/client/components/commandList.js +++ b/app/client/components/commandList.js @@ -362,7 +362,7 @@ exports.groups = [{ desc: 'Delete the currently active viewsection' }, { name: 'duplicateRows', - keys: ['Ctrl+Shift+d'], + keys: ['Mod+Shift+d'], desc: 'Duplicate selected rows' } ],