| 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();
|
|
|