| Index: Source/devtools/front_end/console/ConsoleView.js
|
| diff --git a/Source/devtools/front_end/console/ConsoleView.js b/Source/devtools/front_end/console/ConsoleView.js
|
| index 908af5059261eaf8247a8edd19d09d2ae619d6c1..886f3ed7b587eb07addfb1211decda6954b4e4c1 100644
|
| --- a/Source/devtools/front_end/console/ConsoleView.js
|
| +++ b/Source/devtools/front_end/console/ConsoleView.js
|
| @@ -68,8 +68,11 @@ WebInspector.ConsoleView = function()
|
| WebInspector.SettingsUI.bindCheckbox(this._preserveLogCheckbox.inputElement, WebInspector.settings.preserveConsoleLog);
|
| this._preserveLogCheckbox.element.title = WebInspector.UIString("Do not clear log on page reload / navigation.");
|
|
|
| - var statusBarElement = this._contentsElement.createChild("div", "console-status-bar");
|
| - statusBarElement.appendChildren(this._clearConsoleButton.element, this._filterBar.filterButton().element, this._executionContextSelector.element, this._preserveLogCheckbox.element);
|
| + var statusBar = new WebInspector.StatusBar(this._contentsElement);
|
| + statusBar.appendStatusBarItem(this._clearConsoleButton);
|
| + statusBar.appendStatusBarItem(this._filterBar.filterButton());
|
| + statusBar.appendStatusBarItem(this._executionContextSelector);
|
| + statusBar.appendStatusBarItem(this._preserveLogCheckbox);
|
|
|
| this._filtersContainer = this._contentsElement.createChild("div", "console-filters-header hidden");
|
| this._filtersContainer.appendChild(this._filterBar.filtersElement());
|
| @@ -113,7 +116,7 @@ WebInspector.ConsoleView = function()
|
|
|
| this._showAllMessagesCheckbox.element.classList.add("hidden");
|
|
|
| - statusBarElement.appendChild(this._showAllMessagesCheckbox.element);
|
| + statusBar.appendStatusBarItem(this._showAllMessagesCheckbox);
|
|
|
| this._registerShortcuts();
|
|
|
|
|