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

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

Issue 197823010: [DevTools] Add minimum size to WebInspector.View. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@splitdip2
Patch Set: 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/AuditLauncherView.js
diff --git a/Source/devtools/front_end/AuditLauncherView.js b/Source/devtools/front_end/AuditLauncherView.js
index b64991d8b6d8f1444aac72b26e7ebdf135077d07..2f7ac031a28d071114a91ea79559271c54b0d095 100644
--- a/Source/devtools/front_end/AuditLauncherView.js
+++ b/Source/devtools/front_end/AuditLauncherView.js
@@ -36,6 +36,7 @@
WebInspector.AuditLauncherView = function(auditController)
{
WebInspector.VBox.call(this);
+ this.setMinimumSize(new Size(100, 50));
pfeldman 2014/03/14 06:23:10 You could have created Size inside the method.
dgozman 2014/03/14 15:55:15 Done.
this._auditController = auditController;
« no previous file with comments | « no previous file | Source/devtools/front_end/AuditResultView.js » ('j') | Source/devtools/front_end/InspectedPagePlaceholder.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698