This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch enhance-morph
in repository https://gitbox.apache.org/repos/asf/echarts.git


The following commit(s) were added to refs/heads/enhance-morph by this push:
     new 5620487  fix(ut): not bakeTransform in clone
5620487 is described below

commit 56204877ee5acf629f8c280dd4034571b5bc9543
Author: pissang <bm2736...@gmail.com>
AuthorDate: Fri Jun 18 23:55:59 2021 +0800

    fix(ut): not bakeTransform in clone
---
 src/animation/morphTransitionHelper.ts | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/animation/morphTransitionHelper.ts 
b/src/animation/morphTransitionHelper.ts
index 67858ef..0d08ca3 100644
--- a/src/animation/morphTransitionHelper.ts
+++ b/src/animation/morphTransitionHelper.ts
@@ -94,9 +94,7 @@ const pathDividers: 
Record<SeriesOption['universalTransition']['divideShape'], D
     clone(params) {
         const ret: Path[] = [];
         for (let i = 0; i < params.count; i++) {
-            ret.push(clonePath(params.path, {
-                bakeTransform: true
-            }));
+            ret.push(clonePath(params.path));
         }
         return ret;
     },

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org

Reply via email to