Chromium Code Reviews| Index: Source/devtools/front_end/ui/ShortcutRegistry.js |
| diff --git a/Source/devtools/front_end/ui/ShortcutRegistry.js b/Source/devtools/front_end/ui/ShortcutRegistry.js |
| index 82af1be4d9ada60051517d5b041d36f48a980140..52b18b9f01bda1ec08ea085f7e3948f8549fd7a1 100644 |
| --- a/Source/devtools/front_end/ui/ShortcutRegistry.js |
| +++ b/Source/devtools/front_end/ui/ShortcutRegistry.js |
| @@ -69,7 +69,7 @@ WebInspector.ShortcutRegistry.prototype = { |
| for (var i = 0; i < actionIds.length; ++i) { |
| var descriptors = this.shortcutDescriptorsForAction(actionIds[i]); |
| for (var j = 0; j < descriptors.length; ++j) |
| - result.push(descriptors[j]); |
| + result.push(descriptors[j].key); |
|
apavlov
2014/07/25 09:10:10
Seva, was there anything more to your keys-descrip
|
| } |
| return result; |
| }, |