diff options
Diffstat (limited to 'WebCore/svg/SVGSVGElement.cpp')
-rw-r--r-- | WebCore/svg/SVGSVGElement.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/WebCore/svg/SVGSVGElement.cpp b/WebCore/svg/SVGSVGElement.cpp index 5193e2a..b7f9717 100644 --- a/WebCore/svg/SVGSVGElement.cpp +++ b/WebCore/svg/SVGSVGElement.cpp @@ -217,6 +217,9 @@ FloatPoint SVGSVGElement::currentTranslate() const void SVGSVGElement::setCurrentTranslate(const FloatPoint &translation) { m_translation = translation; + if (RenderObject* object = renderer()) + object->setNeedsLayout(true); + if (parentNode() == document() && document()->renderer()) document()->renderer()->repaint(); } |