| Index: Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| diff --git a/Source/devtools/front_end/timeline/TimelineFlameChart.js b/Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| index efb8165fab752d650898908b13c9ae9f6480d2ef..de2e390c6673a0d90b0b987872b92d9d4f7eba60 100644
|
| --- a/Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| +++ b/Source/devtools/front_end/timeline/TimelineFlameChart.js
|
| @@ -580,7 +580,7 @@ WebInspector.TimelineFlameChartDataProvider.prototype = {
|
| barY += vPadding;
|
| barHeight -= 2 * vPadding + 1;
|
|
|
| - context.fillStyle = "#ccc";
|
| + context.fillStyle = frame.idle ? "#eee" : "#ccc";
|
| context.fillRect(barX, barY, barWidth, barHeight);
|
|
|
| // Draw frame perforation.
|
|
|