Skip to content

Commit

Permalink
Revert of [Devtools] Fix network timeline canvas selection splitview …
Browse files Browse the repository at this point in the history
…(patchset #1 id:1 of https://codereview.chromium.org/2465373002/ )

Reason for revert:
I'll reapply it.

Original issue's description:
> [Devtools] Fix network timeline canvas selection splitview
>
> This patch fixes a regression caused when a user selects a request
> in the new network canvas timeline it would show the canvas to the left
> instead of the name column.
>
> R=dgozman
> BUG=653738

[email protected],[email protected]
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=653738

Review-Url: https://codereview.chromium.org/2472523002
Cr-Commit-Position: refs/heads/master@{#429097}
  • Loading branch information
pavelfeldman authored and Commit bot committed Nov 1, 2016
1 parent 1013526 commit 8e68d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front_end/network/NetworkLogViewColumns.js
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ WebInspector.NetworkLogViewColumns.prototype = {
this._dataGridScroller.style.overflow = "hidden";
this._dataGrid.setScrollContainer(this._timelineScroller);
} else {
this._splitWidget.hideSidebar();
this._splitWidget.hideMain();
this._activeScroller = this._dataGridScroller;
this._dataGridScroller.style.overflow = "overlay";
this._dataGrid.setScrollContainer(this._dataGridScroller);
Expand Down

0 comments on commit 8e68d61

Please sign in to comment.