Changeset 217328 in webkit
- Timestamp:
- May 24, 2017, 12:11:15 AM (8 years ago)
- 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 1 2017-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 1 13 2017-05-08 Fujii Hironori <Hironori.Fujii@sony.com> 2 14 -
releases/WebKitGTK/webkit-2.16/Source/WebInspectorUI/UserInterface/Base/Main.js
r212597 r217328 308 308 this._saveAsKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.Shift | WebInspector.KeyboardShortcut.Modifier.CommandOrControl, "S", this._saveAs.bind(this)); 309 309 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)); 312 312 313 313 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.