Title: [136831] trunk/Source/WebCore
Revision
136831
Author
apav...@chromium.org
Date
2012-12-06 04:29:34 -0800 (Thu, 06 Dec 2012)

Log Message

Web Inspector: Goto panel shortcuts and description are reversed
https://bugs.webkit.org/show_bug.cgi?id=103988

Reviewed by Pavel Feldman.

Swap the square brackets in the shortcuts.

* inspector/front-end/inspector.js:
(WebInspector._registerShortcuts):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (136830 => 136831)


--- trunk/Source/WebCore/ChangeLog	2012-12-06 12:13:59 UTC (rev 136830)
+++ trunk/Source/WebCore/ChangeLog	2012-12-06 12:29:34 UTC (rev 136831)
@@ -1,3 +1,15 @@
+2012-12-06  Alexander Pavlov  <apav...@chromium.org>
+
+        Web Inspector: Goto panel shortcuts and description are reversed
+        https://bugs.webkit.org/show_bug.cgi?id=103988
+
+        Reviewed by Pavel Feldman.
+
+        Swap the square brackets in the shortcuts.
+
+        * inspector/front-end/inspector.js:
+        (WebInspector._registerShortcuts):
+
 2012-12-06  Sheriff Bot  <webkit.review....@gmail.com>
 
         Unreviewed, rolling out r136818.

Modified: trunk/Source/WebCore/inspector/front-end/inspector.js (136830 => 136831)


--- trunk/Source/WebCore/inspector/front-end/inspector.js	2012-12-06 12:13:59 UTC (rev 136830)
+++ trunk/Source/WebCore/inspector/front-end/inspector.js	2012-12-06 12:29:34 UTC (rev 136831)
@@ -623,8 +623,8 @@
     var shortcut = WebInspector.KeyboardShortcut;
     var section = WebInspector.shortcutsScreen.section(WebInspector.UIString("All Panels"));
     var keys = [
-        shortcut.makeDescriptor("]", shortcut.Modifiers.CtrlOrMeta),
-        shortcut.makeDescriptor("[", shortcut.Modifiers.CtrlOrMeta)
+        shortcut.makeDescriptor("[", shortcut.Modifiers.CtrlOrMeta),
+        shortcut.makeDescriptor("]", shortcut.Modifiers.CtrlOrMeta)
     ];
     section.addRelatedKeys(keys, WebInspector.UIString("Go to the panel to the left/right"));
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to