| Index: Source/WebCore/inspector/front-end/inspector.js
|
| ===================================================================
|
| --- Source/WebCore/inspector/front-end/inspector.js (revision 112843)
|
| +++ Source/WebCore/inspector/front-end/inspector.js (working copy)
|
| @@ -652,7 +652,14 @@
|
| shortcut.shortcutToString("]", shortcut.Modifiers.CtrlOrMeta),
|
| shortcut.shortcutToString("[", shortcut.Modifiers.CtrlOrMeta)
|
| ];
|
| - section.addRelatedKeys(keys, WebInspector.UIString("Next/previous panel"));
|
| + section.addRelatedKeys(keys, WebInspector.UIString("Go to the panel to the left/right"));
|
| +
|
| + var keys = [
|
| + shortcut.shortcutToString("[", shortcut.Modifiers.CtrlOrMeta | shortcut.Modifiers.Alt),
|
| + shortcut.shortcutToString("]", shortcut.Modifiers.CtrlOrMeta | shortcut.Modifiers.Alt)
|
| + ];
|
| + section.addRelatedKeys(keys, WebInspector.UIString("Go back/forward in panel history"));
|
| +
|
| section.addKey(shortcut.shortcutToString(shortcut.Keys.Esc), WebInspector.UIString("Toggle console"));
|
| section.addKey(shortcut.shortcutToString("f", shortcut.Modifiers.CtrlOrMeta), WebInspector.UIString("Search"));
|
|
|
| @@ -668,7 +675,7 @@
|
| }
|
|
|
| var goToShortcut = WebInspector.GoToLineDialog.createShortcut();
|
| - section.addKey(goToShortcut.name, WebInspector.UIString("Go to Line"));
|
| + section.addKey(goToShortcut.name, WebInspector.UIString("Go to line"));
|
| }
|
|
|
| WebInspector.documentKeyDown = function(event)
|
|
|