1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-12 22:57:38 +02:00

Desktop: Add keyboard shortcut editor (#3525)

This commit is contained in:
Anjula Karunarathne
2020-09-06 17:30:25 +05:30
committed by GitHub
parent 0998fc0ad7
commit a8296e2e37
16 changed files with 762 additions and 109 deletions

View File

@ -1258,6 +1258,7 @@ class Setting extends BaseModel {
if (name === 'revisionService') return _('Note History');
if (name === 'encryption') return _('Encryption');
if (name === 'server') return _('Web Clipper');
if (name === 'keymap') return _('Keyboard Shortcuts');
return name;
}
@ -1277,6 +1278,7 @@ class Setting extends BaseModel {
if (name === 'revisionService') return 'fas fa-history';
if (name === 'encryption') return 'fas fa-key';
if (name === 'server') return 'far fa-hand-scissors';
if (name === 'keymap') return 'fa fa-keyboard';
return name;
}