mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Use the correct change notification when reversing paths.
This commit is contained in:
parent
8560a71312
commit
ea8518c3a5
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue