From bcc3af457109a1277df4f6303726f148c45ea696 Mon Sep 17 00:00:00 2001 From: DD Liu Date: Mon, 24 Sep 2018 13:47:57 -0400 Subject: [PATCH] Save after adding points (#696) --- src/helper/selection-tools/reshape-tool.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helper/selection-tools/reshape-tool.js b/src/helper/selection-tools/reshape-tool.js index 0ddba5a3..54abd3fb 100644 --- a/src/helper/selection-tools/reshape-tool.js +++ b/src/helper/selection-tools/reshape-tool.js @@ -200,6 +200,7 @@ class ReshapeTool extends paper.Tool { hitResult.type === 'curve') { this.mode = ReshapeModes.POINT; this._modeMap[this.mode].addPoint(hitProperties); + this.onUpdateImage(); this._modeMap[this.mode].onMouseDown(hitProperties); } else if ( hitResult.type === 'handle-in' ||