| Index: sky/engine/core/rendering/RenderBlock.cpp
|
| diff --git a/sky/engine/core/rendering/RenderBlock.cpp b/sky/engine/core/rendering/RenderBlock.cpp
|
| index 0ec3ad5422fa24218ceb1e047dd309e5b79e378c..103b744c57fe70271ad6fe209ed3826fa1063418 100644
|
| --- a/sky/engine/core/rendering/RenderBlock.cpp
|
| +++ b/sky/engine/core/rendering/RenderBlock.cpp
|
| @@ -479,10 +479,8 @@ void RenderBlock::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset)
|
|
|
| void RenderBlock::paintContents(PaintInfo& paintInfo, const LayoutPoint& paintOffset)
|
| {
|
| - // We don't paint our own background, but we do let the kids paint their backgrounds.
|
| - PaintInfo paintInfoForChild(paintInfo);
|
| - paintInfoForChild.updatePaintingRootForChildren(this);
|
| - paintChildren(paintInfoForChild, paintOffset);
|
| + // FIXME(sky): Can we remove paintContents and just keep paintChildren?
|
| + paintChildren(paintInfo, paintOffset);
|
| }
|
|
|
| void RenderBlock::paintChildren(PaintInfo& paintInfo, const LayoutPoint& paintOffset)
|
|
|