Improve handling of changing curves in CurveLocation.

Relates to #1233
This commit is contained in:
Jürg Lehni 2017-01-03 00:08:28 +01:00
parent 468bb04919
commit b743f456b3

View file

@ -142,6 +142,7 @@ var CurveLocation = Base.extend(/** @lends CurveLocation# */{
return this._curve
|| trySegment(this._segment)
|| trySegment(this._segment1)
|| trySegment(this._segment1.getNext())
|| trySegment(this._segment2.getPrevious());
},