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

Unified Diff: third_party/WebKit/Source/devtools/front_end/settings/EditFileSystemDialog.js

Issue 1397403003: [DevTools] Remove HelpScreen, turn SettingsScreen into dialog and web component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@screens
Patch Set: Created 5 years, 2 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: third_party/WebKit/Source/devtools/front_end/settings/EditFileSystemDialog.js
diff --git a/third_party/WebKit/Source/devtools/front_end/settings/EditFileSystemDialog.js b/third_party/WebKit/Source/devtools/front_end/settings/EditFileSystemDialog.js
index de2647b5aee6b0763f6b9897e2ee599df9897140..c41c5c9f0d637b5f2c24f9411b41acaa4d7be65e 100644
--- a/third_party/WebKit/Source/devtools/front_end/settings/EditFileSystemDialog.js
+++ b/third_party/WebKit/Source/devtools/front_end/settings/EditFileSystemDialog.js
@@ -36,6 +36,7 @@
WebInspector.EditFileSystemDialog = function(fileSystemPath)
{
WebInspector.VBox.call(this);
+ this.registerRequiredCSS("settings/settingsScreen.css");
this.element.classList.add("dialog-contents", "settings-dialog", "settings-tab");
this._fileSystemPath = fileSystemPath;
@@ -98,7 +99,7 @@ WebInspector.EditFileSystemDialog = function(fileSystemPath)
this._dialog = new WebInspector.Dialog();
this._dialog.setWrapsContent(true);
- this._dialog.setMaxSize(new Size(600, 600));
+ this._dialog.setMaxSize(new Size(800, 600));
this._dialog.addCloseButton();
this.show(this._dialog.element);
this._dialog.show();

Powered by Google App Engine
This is Rietveld 408576698