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

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: width/height -> right/bottom 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..57f46a2f8909a1c712058f8c10f18cc65ce8c1be 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(100, 25);
this._auditController = auditController;

Powered by Google App Engine
This is Rietveld 408576698