Use the correct change notification when reversing paths.

This commit is contained in:
Jürg Lehni 2014-05-12 16:44:48 +02:00
parent 8560a71312
commit ea8518c3a5

View file

@ -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.