| Index: Source/devtools/front_end/DebuggerModel.js
|
| diff --git a/Source/devtools/front_end/DebuggerModel.js b/Source/devtools/front_end/DebuggerModel.js
|
| index 197ce13cefe27ab45d9eccc416557431e07295d2..6f157ff3b7b32ede471f3c2e96d654bb23a22f5a 100644
|
| --- a/Source/devtools/front_end/DebuggerModel.js
|
| +++ b/Source/devtools/front_end/DebuggerModel.js
|
| @@ -55,7 +55,9 @@ WebInspector.DebuggerModel = function(target)
|
|
|
| this.enableDebugger();
|
|
|
| - this.applySkipStackFrameSettings();
|
| + WebInspector.settings.skipStackFramesSwitch.addChangeListener(this._applySkipStackFrameSettings, this);
|
| + WebInspector.settings.skipStackFramesPattern.addChangeListener(this._applySkipStackFrameSettings, this);
|
| + this._applySkipStackFrameSettings();
|
| }
|
|
|
| /**
|
| @@ -689,7 +691,7 @@ WebInspector.DebuggerModel.prototype = {
|
| this._pausedScript(newCallFrames, this._debuggerPausedDetails.reason, this._debuggerPausedDetails.auxData, this._debuggerPausedDetails.breakpointIds, asyncStackTrace);
|
| },
|
|
|
| - applySkipStackFrameSettings: function()
|
| + _applySkipStackFrameSettings: function()
|
| {
|
| if (!WebInspector.experimentsSettings.frameworksDebuggingSupport.isEnabled())
|
| return;
|
|
|