From b743f456b3bcb615188922a1a837c29330436706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Tue, 3 Jan 2017 00:08:28 +0100 Subject: [PATCH] Improve handling of changing curves in CurveLocation. Relates to #1233 --- src/path/CurveLocation.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/path/CurveLocation.js b/src/path/CurveLocation.js index 7deadf96..1f857142 100644 --- a/src/path/CurveLocation.js +++ b/src/path/CurveLocation.js @@ -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()); },