| Index: Source/devtools/front_end/sources/ThreadsSidebarPane.js
|
| diff --git a/Source/devtools/front_end/sources/ThreadsSidebarPane.js b/Source/devtools/front_end/sources/ThreadsSidebarPane.js
|
| index c79a6ddf9d3989b7d0244f6b07700b816c7f3493..c33f1d129463c5e89827d61fbb2a09fabaa4eb66 100644
|
| --- a/Source/devtools/front_end/sources/ThreadsSidebarPane.js
|
| +++ b/Source/devtools/front_end/sources/ThreadsSidebarPane.js
|
| @@ -19,7 +19,7 @@ WebInspector.ThreadsSidebarPane = function()
|
| /** @type {?WebInspector.UIList.Item} */
|
| this._selectedListItem = null;
|
| this.threadList = new WebInspector.UIList();
|
| - this.threadList.show(this.bodyElement);
|
| + this.threadList.show(this.element);
|
| WebInspector.targetManager.addModelListener(WebInspector.DebuggerModel, WebInspector.DebuggerModel.Events.DebuggerPaused, this._onDebuggerStateChanged, this);
|
| WebInspector.targetManager.addModelListener(WebInspector.DebuggerModel, WebInspector.DebuggerModel.Events.DebuggerResumed, this._onDebuggerStateChanged, this);
|
| WebInspector.context.addFlavorChangeListener(WebInspector.Target, this._targetChanged, this);
|
|
|