Changeset 204099 in webkit


Ignore:
Timestamp:
Aug 3, 2016 1:49:15 PM (8 years ago)
Author:
Matt Baker
Message:

Web Inspector: Cmd-L shortcut for Jump to Line conflicts with selecting URL of inspected page
https://bugs.webkit.org/show_bug.cgi?id=158028
<rdar://problem/26516663>

Reviewed by Timothy Hatcher.

Remove Command-L shortcut for opening the Line Number dialog, since
we already support Control-G.

  • UserInterface/Views/SourceCodeTextEditor.js:

(WebInspector.SourceCodeTextEditor): Deleted.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r203994 r204099  
     12016-08-03  Matt Baker  <mattbaker@apple.com>
     2
     3        Web Inspector: Cmd-L shortcut for Jump to Line conflicts with selecting URL of inspected page
     4        https://bugs.webkit.org/show_bug.cgi?id=158028
     5        <rdar://problem/26516663>
     6
     7        Reviewed by Timothy Hatcher.
     8
     9        Remove Command-L shortcut for opening the Line Number dialog, since
     10        we already support Control-G.
     11
     12        * UserInterface/Views/SourceCodeTextEditor.js:
     13        (WebInspector.SourceCodeTextEditor): Deleted.
     14
    1152016-08-01  Nikita Vasilyev  <nvasilyev@apple.com>
    216
  • trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.js

    r201019 r204099  
    8383        sourceCode.requestContent().then(this._contentAvailable.bind(this));
    8484
    85         // FIXME: Cmd+L shortcut doesn't actually work.
    86         new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.Command, "L", this.showGoToLineDialog.bind(this), this.element);
    8785        new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.Control, "G", this.showGoToLineDialog.bind(this), this.element);
    8886
Note: See TracChangeset for help on using the changeset viewer.