| Index: Source/core/rendering/RenderTheme.cpp
|
| diff --git a/Source/core/rendering/RenderTheme.cpp b/Source/core/rendering/RenderTheme.cpp
|
| index 75a6b9b2d8e4eb8cf352045e18c7ca80068d9656..4c7461edef13f756d402cfbbb289a61384dfe140 100644
|
| --- a/Source/core/rendering/RenderTheme.cpp
|
| +++ b/Source/core/rendering/RenderTheme.cpp
|
| @@ -234,7 +234,7 @@ bool RenderTheme::paint(RenderObject* o, const PaintInfo& paintInfo, const IntRe
|
| // for that control.
|
| if (paintInfo.context->updatingControlTints()) {
|
| if (controlSupportsTints(o))
|
| - o->repaint();
|
| + o->invalidatePaint();
|
| return false;
|
| }
|
| ControlPart part = o->style()->appearance();
|
| @@ -637,7 +637,7 @@ bool RenderTheme::stateChanged(RenderObject* o, ControlState state) const
|
| return false;
|
|
|
| // Repaint the control.
|
| - o->repaint();
|
| + o->invalidatePaint();
|
| return true;
|
| }
|
|
|
|
|