Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js

Issue 2468393002: [Devtools] Added constraints to new network timeline (Closed)
Patch Set: changes Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
index 76c886b23dc232c3b835c6a4f1794287ad3a0cc1..fe36635fb7b3bb9a2aba2247acc35c70993b2b33 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkLogViewColumns.js
@@ -138,7 +138,9 @@ WebInspector.NetworkLogViewColumns = class {
if (Runtime.experiments.isEnabled('canvasNetworkTimeline')) {
this._splitWidget = new WebInspector.SplitWidget(true, true, 'networkPanelSplitViewTimeline', 200);
- this._splitWidget.setMainWidget(this._dataGrid.asWidget());
+ var widget = this._dataGrid.asWidget();
+ widget.setMinimumSize(150, 0);
+ this._splitWidget.setMainWidget(widget);
}
}
@@ -173,6 +175,7 @@ WebInspector.NetworkLogViewColumns = class {
this._createTimelineHeader();
this._timelineColumn.contentElement.classList.add('network-timeline-view');
+ this._timelineColumn.setMinimumSize(100, 0);
this._splitWidget.setSidebarWidget(this._timelineColumn);
this.switchViewMode(false);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698