Index: Source/devtools/front_end/AdvancedSearchController.js |
diff --git a/Source/devtools/front_end/AdvancedSearchController.js b/Source/devtools/front_end/AdvancedSearchController.js |
index 821b7be0f1a04be3c4f8c12bfa7b40880b035700..848d7188ffdc6cea6279fb1a9cfc2148b3fc3776 100644 |
--- a/Source/devtools/front_end/AdvancedSearchController.js |
+++ b/Source/devtools/front_end/AdvancedSearchController.js |
@@ -59,7 +59,7 @@ WebInspector.AdvancedSearchController.prototype = { |
{ |
if (WebInspector.KeyboardShortcut.makeKeyFromEvent(event) === this._shortcut.key) { |
if (!this._searchView || !this._searchView.isShowing() || this._searchView._search !== document.activeElement) { |
- WebInspector.showPanel("scripts"); |
+ WebInspector.showPanel("sources"); |
this.show(); |
} else |
this.close(); |
@@ -557,7 +557,7 @@ WebInspector.FileBasedSearchResultsPane.prototype = { |
_createAnchor: function(uiSourceCode, lineNumber, columnNumber) |
{ |
var anchor = document.createElement("a"); |
- anchor.preferredPanel = "scripts"; |
+ anchor.preferredPanel = "sources"; |
anchor.href = sanitizeHref(uiSourceCode.originURL()); |
anchor.uiSourceCode = uiSourceCode; |
anchor.lineNumber = lineNumber; |