| Index: Source/devtools/front_end/common/Settings.js
|
| diff --git a/Source/devtools/front_end/common/Settings.js b/Source/devtools/front_end/common/Settings.js
|
| index 0fa0018b779d01ff35810a5e0480e0d7a7c3f13e..de480afab08d2b28ae63bda3c585f00d26495ed7 100644
|
| --- a/Source/devtools/front_end/common/Settings.js
|
| +++ b/Source/devtools/front_end/common/Settings.js
|
| @@ -90,7 +90,9 @@ WebInspector.Settings = function()
|
| this.pauseOnExceptionEnabled = this.createSetting("pauseOnExceptionEnabled", false);
|
| this.pauseOnCaughtException = this.createSetting("pauseOnCaughtException", false);
|
| this.enableAsyncStackTraces = this.createSetting("enableAsyncStackTraces", false);
|
| - this.responsiveDesignMode = this.createSetting("responsiveDesignMode", false);
|
| +
|
| + this.responsiveDesign = {};
|
| + this.responsiveDesign.enabled = this.createSetting("responsiveDesign.enabled", false);
|
| }
|
|
|
| WebInspector.Settings.prototype = {
|
|
|