| Index: sky/engine/core/rendering/style/StyleVisualData.cpp
|
| diff --git a/sky/engine/core/rendering/style/StyleVisualData.cpp b/sky/engine/core/rendering/style/StyleVisualData.cpp
|
| index e1f87a587ea08961b9326fdc2695cc52038d88a8..8ba861c00f9988a128735f3faa6c1cea7a24424f 100644
|
| --- a/sky/engine/core/rendering/style/StyleVisualData.cpp
|
| +++ b/sky/engine/core/rendering/style/StyleVisualData.cpp
|
| @@ -29,7 +29,8 @@ namespace blink {
|
| StyleVisualData::StyleVisualData()
|
| : hasAutoClip(true)
|
| , textDecoration(RenderStyle::initialTextDecoration())
|
| - , m_zoom(RenderStyle::initialZoom())
|
| + // FIXME(sky): Remove
|
| + , m_zoom(1.0f)
|
| {
|
| }
|
|
|
| @@ -42,7 +43,8 @@ StyleVisualData::StyleVisualData(const StyleVisualData& o)
|
| , clip(o.clip)
|
| , hasAutoClip(o.hasAutoClip)
|
| , textDecoration(o.textDecoration)
|
| - , m_zoom(RenderStyle::initialZoom())
|
| + // FIXME(sky): Remove
|
| + , m_zoom(1.0f)
|
| {
|
| }
|
|
|
|
|