Commit 84d17540 authored by caseq's avatar caseq Committed by Commit bot

Timeline: fix exception when updating tree view details and Events tree experiment is off

BUG=

Review URL: https://codereview.chromium.org/1467703003

Cr-Commit-Position: refs/heads/master@{#361156}
parent 945cd05f
......@@ -185,6 +185,9 @@ WebInspector.TimelineTreeView.prototype = {
_updateDetailsForSelection: function()
{
// FIXME: remove this as we implement details for all modes.
if (!this._detailsView)
return;
var selectedNode = this._dataGrid.selectedNode ? /** @type {!WebInspector.TimelineTreeView.GridNode} */ (this._dataGrid.selectedNode)._profileNode : null;
if (selectedNode === this._lastSelectedNode)
return;
......
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