Fix path.isSelected

This fixes #1378
This commit is contained in:
sapics 2017-09-21 13:42:55 +09:00 committed by GitHub
parent b6f9d73af0
commit 1c5887433b

View file

@ -341,7 +341,7 @@ var Curve = Base.extend(/** @lends Curve# */{
*/
isSelected: function() {
return this.getPoint1().isSelected()
&& this.getHandle2().isSelected()
&& this.getHandle1().isSelected()
&& this.getHandle2().isSelected()
&& this.getPoint2().isSelected();
},