This commit is contained in:
Sandeep Somavarapu 2021-07-16 10:39:07 +02:00
parent 635038ff82
commit 4b6444d73b
No known key found for this signature in database
GPG key ID: 1FED25EC4646638B

View file

@ -129,7 +129,7 @@ export class KeybindingsEditor extends EditorPane implements IKeybindingsEditorP
this.recordKeysAction = new Action(KEYBINDINGS_EDITOR_COMMAND_RECORD_SEARCH_KEYS, localize('recordKeysLabel', "Record Keys"), ThemeIcon.asClassName(keybindingsRecordKeysIcon));
this.recordKeysAction.checked = false;
this.sortByPrecedenceAction = new Action(KEYBINDINGS_EDITOR_COMMAND_SORTBY_PRECEDENCE, localize('sortByPrecedeneLabel', "Sort by Precedence"), ThemeIcon.asClassName(keybindingsSortIcon));
this.sortByPrecedenceAction = new Action(KEYBINDINGS_EDITOR_COMMAND_SORTBY_PRECEDENCE, localize('sortByPrecedeneLabel', "Sort by Precedence (Highest first)"), ThemeIcon.asClassName(keybindingsSortIcon));
this.sortByPrecedenceAction.checked = false;
}