From ea8518c3a5ded59a2d4e6b3d46fe8f74763f68ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 12 May 2014 16:44:48 +0200 Subject: [PATCH] Use the correct change notification when reversing paths. --- src/path/Path.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path/Path.js b/src/path/Path.js index 891077a3..b3f87d03 100644 --- a/src/path/Path.js +++ b/src/path/Path.js @@ -1216,7 +1216,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); + this._changed(/*#=*/ Change.GEOMETRY); }, // DOCS: document Path#join(path) in more detail.