| Index: sky/engine/core/rendering/RenderObject.h
|
| diff --git a/sky/engine/core/rendering/RenderObject.h b/sky/engine/core/rendering/RenderObject.h
|
| index 46ae0c5e00d83ea23e7b48bdcdb0783be13c9808..1c48ea8657f7aeefbd68dececae724d2415eea2d 100644
|
| --- a/sky/engine/core/rendering/RenderObject.h
|
| +++ b/sky/engine/core/rendering/RenderObject.h
|
| @@ -679,12 +679,12 @@ public:
|
|
|
| inline Color resolveColor(const RenderStyle* styleToUse, int colorProperty) const
|
| {
|
| - return styleToUse->visitedDependentColor(colorProperty);
|
| + return styleToUse->colorIncludingFallback(colorProperty);
|
| }
|
|
|
| inline Color resolveColor(int colorProperty) const
|
| {
|
| - return style()->visitedDependentColor(colorProperty);
|
| + return style()->colorIncludingFallback(colorProperty);
|
| }
|
|
|
| virtual CursorDirective getCursor(const LayoutPoint&, Cursor&) const;
|
|
|