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); |
} |
return result; |
}, |