@overtone-art/canvas-editor-core 0.8.1 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-XNGPX7FG.mjs → chunk-TP527WVQ.mjs} +5 -3
- package/dist/{chunk-XNGPX7FG.mjs.map → chunk-TP527WVQ.mjs.map} +1 -1
- package/dist/index.global.js +1 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/node.js.map +1 -1
- package/dist/node.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2716,8 +2716,10 @@ var TextWrapManager = class {
|
|
|
2716
2716
|
text.dirty = true;
|
|
2717
2717
|
text.setCoords();
|
|
2718
2718
|
this.canvas.requestRenderAll();
|
|
2719
|
-
|
|
2720
|
-
|
|
2719
|
+
if (save) {
|
|
2720
|
+
this.events.emit("layer:modified", { layerId });
|
|
2721
|
+
this.history.save();
|
|
2722
|
+
}
|
|
2721
2723
|
return true;
|
|
2722
2724
|
}
|
|
2723
2725
|
};
|