Changeset 217328 in webkit


Ignore:
Timestamp:
May 24, 2017, 12:11:15 AM (8 years ago)
Author:
Carlos Garcia Campos
Message:

Merge r216562 - [GTK][Win] Web Inspector: Cann't open "Quick Open" dialog by pressing Ctrl+Shift+O
https://bugs.webkit.org/show_bug.cgi?id=171798

Patch by Fujii Hironori <Fujii Hironori> on 2017-05-09
Reviewed by Michael Catanzaro.

PC can't input the shortcut keys Command+Shift+O and Command+P.

  • UserInterface/Base/Main.js:

(WebInspector.contentLoaded): Use CommandOrControl instead of Command.

Location:
releases/WebKitGTK/webkit-2.16/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.16/Source/WebInspectorUI/ChangeLog

    r216390 r217328  
     12017-05-09  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        [GTK][Win] Web Inspector: Cann't open "Quick Open" dialog by pressing Ctrl+Shift+O
     4        https://bugs.webkit.org/show_bug.cgi?id=171798
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        PC can't input the shortcut keys Command+Shift+O and Command+P.
     9
     10        * UserInterface/Base/Main.js:
     11        (WebInspector.contentLoaded): Use CommandOrControl instead of Command.
     12
    1132017-05-08  Fujii Hironori  <Hironori.Fujii@sony.com>
    214
  • releases/WebKitGTK/webkit-2.16/Source/WebInspectorUI/UserInterface/Base/Main.js

    r212597 r217328  
    308308    this._saveAsKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.Shift | WebInspector.KeyboardShortcut.Modifier.CommandOrControl, "S", this._saveAs.bind(this));
    309309
    310     this.openResourceKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.Command | WebInspector.KeyboardShortcut.Modifier.Shift, "O", this._showOpenResourceDialog.bind(this));
    311     new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.Command, "P", this._showOpenResourceDialog.bind(this));
     310    this.openResourceKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl | WebInspector.KeyboardShortcut.Modifier.Shift, "O", this._showOpenResourceDialog.bind(this));
     311    new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl, "P", this._showOpenResourceDialog.bind(this));
    312312
    313313    this.navigationSidebarKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl | WebInspector.KeyboardShortcut.Modifier.Shift, "0", this.toggleNavigationSidebar.bind(this));
Note: See TracChangeset for help on using the changeset viewer.