| Index: third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| index 662d3219a88e03d0ac290767a9ac5ea31b7e1b22..ac877d3ffbf1cae42a3732f4ded0625b6cc2fb02 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/SourcesPanel.js
|
| @@ -81,6 +81,7 @@ WebInspector.SourcesPanel = function()
|
| this._sourcesView.addEventListener(WebInspector.SourcesView.Events.EditorClosed, this._editorClosed.bind(this));
|
| this._sourcesView.registerShortcuts(this.registerShortcuts.bind(this));
|
| this.editorView.setMainWidget(this._sourcesView);
|
| + this._sourcesView.focus();
|
| this._editorChanged(this._sourcesView.currentUISourceCode());
|
|
|
| this._threadsSidebarPane = null;
|
| @@ -122,14 +123,6 @@ WebInspector.SourcesPanel.minToolbarWidth = 215;
|
| WebInspector.SourcesPanel.prototype = {
|
| /**
|
| * @override
|
| - */
|
| - focus: function()
|
| - {
|
| - this._sourcesView.focus();
|
| - },
|
| -
|
| - /**
|
| - * @override
|
| * @param {!WebInspector.Target} target
|
| */
|
| targetAdded: function(target)
|
|
|