diff --git a/servo/components/style/properties/helpers/animated_properties.mako.rs b/servo/components/style/properties/helpers/animated_properties.mako.rs index 3bdd1264a0ba..42c531bac83a 100644 --- a/servo/components/style/properties/helpers/animated_properties.mako.rs +++ b/servo/components/style/properties/helpers/animated_properties.mako.rs @@ -1503,10 +1503,10 @@ impl Animate for MatrixDecomposed2D { let matrix = self.matrix.animate(&other.matrix, procedure)?; Ok(MatrixDecomposed2D { - translate: translate, - scale: scale, - angle: angle, - matrix: matrix, + translate, + scale, + angle, + matrix, }) } }