aboutsummaryrefslogtreecommitdiffstats
path: root/src/fx.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/fx.js')
-rw-r--r--src/fx.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fx.js b/src/fx.js
index 2105d67..d70e245 100644
--- a/src/fx.js
+++ b/src/fx.js
@@ -642,7 +642,7 @@ SVG.FX = SVG.invent({
if(a instanceof SVG.Matrix){
if(a.relative){
- at = at.multiply(a.at(s.ease(this.pos)))
+ at = at.multiply(new SVG.Matrix().morph(a).at(s.ease(this.pos)))
}else{
at = at.morph(a).at(s.ease(this.pos))
}