| Index: sky/engine/core/rendering/RenderView.cpp
|
| diff --git a/sky/engine/core/rendering/RenderView.cpp b/sky/engine/core/rendering/RenderView.cpp
|
| index f7e5bd5c001f34399f54e0c28302c7dae9c8a7e3..7013d70afb1329ccdd373078c477d3358b38ca7d 100644
|
| --- a/sky/engine/core/rendering/RenderView.cpp
|
| +++ b/sky/engine/core/rendering/RenderView.cpp
|
| @@ -196,7 +196,7 @@ void RenderView::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset, Vec
|
| paintObject(paintInfo, paintOffset, layers);
|
| }
|
|
|
| -void RenderView::paintBoxDecorationBackground(PaintInfo& paintInfo, const LayoutPoint&)
|
| +void RenderView::paintBoxDecorationBackground(PaintInfo& paintInfo, const LayoutPoint& paintOffset)
|
| {
|
| if (!view())
|
| return;
|
| @@ -216,6 +216,7 @@ void RenderView::paintBoxDecorationBackground(PaintInfo& paintInfo, const Layout
|
| paintInfo.context->clearRect(paintInfo.rect);
|
| }
|
| }
|
| + paintCustomPainting(paintInfo, paintOffset);
|
| }
|
|
|
| void RenderView::absoluteQuads(Vector<FloatQuad>& quads) const
|
|
|