Browse Source

Revert back to have shortcut "c to archive" back for non-Persian keyboards.

Thanks to hatl and xet7 !

Related #1878
Lauri Ojansivu 5 months ago
parent
commit
ba0fdaef72
1 changed files with 2 additions and 2 deletions
  1. 2 2
      client/lib/keyboard.js

+ 2 - 2
client/lib/keyboard.js

@@ -190,7 +190,7 @@ Mousetrap.bind('space', evt => {
   }
 });
 
-Mousetrap.bind('`', evt => {
+Mousetrap.bind('c', evt => {
   const cardId = getSelectedCardId();
   if (!cardId) {
     return;
@@ -307,7 +307,7 @@ Template.keyboardShortcuts.helpers({
       action: 'shortcut-assign-self',
     },
     {
-      keys: ['`', '÷'],
+      keys: ['c', '÷'],
       action: 'archive-card',
     },
     {