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

Unified Diff: Source/devtools/front_end/TimelinePanel.js

Issue 197823010: [DevTools] Add minimum size to WebInspector.View. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@splitdip2
Patch Set: fixed comments Created 6 years, 9 months 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 | « Source/devtools/front_end/TabbedPane.js ('k') | Source/devtools/front_end/View.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/TimelinePanel.js
diff --git a/Source/devtools/front_end/TimelinePanel.js b/Source/devtools/front_end/TimelinePanel.js
index 94cb730dd4fb52290935775070b1ffc66633cd17..e9aefd2881a29a11b07aae9550d0e4ece5268f6a 100644
--- a/Source/devtools/front_end/TimelinePanel.js
+++ b/Source/devtools/front_end/TimelinePanel.js
@@ -103,12 +103,12 @@ WebInspector.TimelinePanel = function()
this._detailsSplitView = new WebInspector.SplitView(false, true, "timelinePanelDetailsSplitViewState");
this._detailsSplitView.element.classList.add("timeline-details-split");
this._detailsSplitView.sidebarElement().classList.add("timeline-details");
- this._detailsSplitView.setMainElementConstraints(undefined, 40);
this._detailsView = new WebInspector.TimelineDetailsView();
this._detailsSplitView.installResizer(this._detailsView.titleElement());
this._detailsView.show(this._detailsSplitView.sidebarElement());
this._searchableView = new WebInspector.SearchableView(this);
+ this._searchableView.setMinimumSize(0, 25);
this._searchableView.element.classList.add("searchable-view");
this._searchableView.show(this._detailsSplitView.mainElement());
« no previous file with comments | « Source/devtools/front_end/TabbedPane.js ('k') | Source/devtools/front_end/View.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698