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

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

Issue 214663005: [DevTools] Add preferred size to WebInspector.View. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: saved main size 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
Index: Source/devtools/front_end/SourcesView.js
diff --git a/Source/devtools/front_end/SourcesView.js b/Source/devtools/front_end/SourcesView.js
index da99a3a3388b45f9c2051d7689cb0bfd0a9df309..5f0bc388ee79086b137657c6b4fe26a9a983b89a 100644
--- a/Source/devtools/front_end/SourcesView.js
+++ b/Source/devtools/front_end/SourcesView.js
@@ -16,7 +16,7 @@ WebInspector.SourcesView = function(workspace, sourcesPanel)
WebInspector.VBox.call(this);
this.registerRequiredCSS("sourcesView.css");
this.element.id = "sources-panel-sources-view";
- this.setMinimumSize(50, 25);
+ this.setMinimumSize(50, 25, 150, 150);
vsevik 2014/03/28 16:13:26 150, 100 Should be enough for now.
dgozman 2014/03/28 18:05:02 Done.
this._workspace = workspace;
this._sourcesPanel = sourcesPanel;

Powered by Google App Engine
This is Rietveld 408576698