Chromium Code Reviews| Index: Source/devtools/front_end/elements/ComputedStyleWidget.js |
| diff --git a/Source/devtools/front_end/elements/ComputedStyleWidget.js b/Source/devtools/front_end/elements/ComputedStyleWidget.js |
| index a7b22b5a652a361f83e31a42f5a2cb69722fcbe2..34ee77bb016bebec5881f3f389f2c3f85b8cd25b 100644 |
| --- a/Source/devtools/front_end/elements/ComputedStyleWidget.js |
| +++ b/Source/devtools/front_end/elements/ComputedStyleWidget.js |
| @@ -54,9 +54,7 @@ WebInspector.ComputedStyleWidget = function(stylesSidebarPane, sharedModel) |
| var toolbar = new WebInspector.Toolbar(hbox); |
| toolbar.element.classList.add("styles-pane-toolbar"); |
| - toolbar.appendToolbarItem(new WebInspector.ToolbarCheckbox(WebInspector.UIString("Show inherited"), |
| - WebInspector.UIString("Show inherited properties"), |
| - this._showInheritedComputedStylePropertiesSetting)); |
| + toolbar.appendToolbarItem(new WebInspector.ToolbarCheckbox(WebInspector.UIString("Show inherited"), undefined, this._showInheritedComputedStylePropertiesSetting)); |
|
paulirish
2015/08/03 16:26:20
Would rather improve the tooltip than remove it.
samli
2015/08/05 07:53:31
Changed the checkbox to say "Show all", since I th
|
| this._propertiesContainer = this.element.createChild("div", "monospace"); |
| this._propertiesContainer.classList.add("computed-properties"); |