From 86277f057857f0a32712e58698fbce069934faea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Thu, 10 Apr 2014 22:37:11 +0200 Subject: [PATCH] Reversing path direction needs to trigger a GEOMETRY change. --- src/path/Path.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/path/Path.js b/src/path/Path.js index fd11645c..526d12b9 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -1185,6 +1185,7 @@ var Path = PathItem.extend(/** @lends Path# */{ // Flip clockwise state if it's defined if (this._clockwise !== undefined) this._clockwise = !this._clockwise; + this._changed(/*#=*/ ChangeFlag.GEOMETRY); }, // DOCS: document Path#join(path) in more detail.