This commit is contained in:
Sandeep Somavarapu 2017-11-23 09:38:21 +01:00
parent c64dd6ae57
commit cd3538795a

View file

@ -743,7 +743,7 @@ class CommandColumn extends Column {
commandLabel.set(keybindingItem.command, keybindingItemEntry.commandIdMatches); commandLabel.set(keybindingItem.command, keybindingItemEntry.commandIdMatches);
} }
if (commandLabel) { if (commandLabel) {
commandLabel.element.title = keybindingItem.command; commandLabel.element.title = keybindingItem.commandLabel ? localize('title', "{0} ({1})", keybindingItem.commandLabel, keybindingItem.command) : keybindingItem.command;
} }
} }