| Index: third_party/WebKit/Source/devtools/front_end/timeline/CountersGraph.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/CountersGraph.js b/third_party/WebKit/Source/devtools/front_end/timeline/CountersGraph.js
|
| index c1bec7d4aeae7d216d8b0604e8055987897e3528..520ffda3cc80db06c13d5f00b8606b466d199046 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/CountersGraph.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/CountersGraph.js
|
| @@ -397,8 +397,8 @@ Timeline.CountersGraph.CounterUI = class {
|
| this._formatter = formatter || Number.withThousandsSeparator;
|
| var container = countersPane._infoWidget.element.createChild('div', 'memory-counter-selector-info');
|
|
|
| - this._setting = Common.settings.createSetting('timelineCountersGraph-' + title, true);
|
| - this._filter = new UI.ToolbarCheckbox(title, title, this._setting);
|
| + this._setting = Common.settings.createSetting('timelineCountersGraph-' + title, true, false, title);
|
| + this._filter = new UI.ToolbarSettingCheckbox(this._setting, title);
|
| this._filter.inputElement.classList.add('-theme-preserve');
|
| var color = Common.Color.parse(graphColor).setAlpha(0.5).asString(Common.Color.Format.RGBA);
|
| if (color) {
|
|
|