| Index: Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| diff --git a/Source/devtools/front_end/sources/CallStackSidebarPane.js b/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| index 85bb4dd791081d341c6dca4c530202c62d7309c4..a9ed50dc065e743fb1ff439768b68770cf13e486 100644
|
| --- a/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| +++ b/Source/devtools/front_end/sources/CallStackSidebarPane.js
|
| @@ -33,7 +33,7 @@ WebInspector.CallStackSidebarPane = function()
|
| this.bodyElement.addEventListener("keydown", this._keyDown.bind(this), true);
|
| this.bodyElement.tabIndex = 0;
|
|
|
| - var asyncCheckbox = this.titleElement.appendChild(WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIString("Async"), WebInspector.settings.enableAsyncStackTraces, true, undefined, WebInspector.UIString("Capture async stack traces")));
|
| + var asyncCheckbox = this.titleElement.appendChild(WebInspector.SettingsUI.createSettingCheckbox(WebInspector.UIString("Async"), WebInspector.settings.enableAsyncStackTraces, true, WebInspector.UIString("Capture async stack traces")));
|
| asyncCheckbox.classList.add("scripts-callstack-async");
|
| asyncCheckbox.addEventListener("click", consumeEvent, false);
|
| WebInspector.settings.enableAsyncStackTraces.addChangeListener(this._asyncStackTracesStateChanged, this);
|
|
|