Commit fed7a05d authored by pfeldman's avatar pfeldman Committed by Commit bot

DevTools: do not lazy load provided view if it was explicitly added.

TBR=dgozman

Review-Url: https://codereview.chromium.org/2197823002
Cr-Commit-Position: refs/heads/master@{#408807}
parent e0fd517b
......@@ -1377,6 +1377,9 @@ WebInspector.ExtensibleTabbedPaneController.prototype = {
_tabSelected: function(event)
{
var tabId = /** @type {string} */ (event.data.tabId);
if (!this._extensions.has(tabId))
return;
this._viewForId(tabId);
var descriptor = this._extensions.get(tabId).descriptor();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment