babylonjs-gui 6.16.1 → 6.16.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/babylon.gui.js +1 -1
- package/babylon.gui.js.map +1 -1
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/package.json +2 -2
package/babylon.gui.js
CHANGED
@@ -10973,7 +10973,7 @@ var InputTextArea = /** @class */ (function (_super) {
|
|
10973
10973
|
var flushedLine_1 = "";
|
10974
10974
|
line.split("").map(function (char) {
|
10975
10975
|
if (context.measureText(flushedLine_1 + char).width > width) {
|
10976
|
-
lines.push({ text: flushedLine_1, width: context.measureText(flushedLine_1).width, lineEnding: "
|
10976
|
+
lines.push({ text: flushedLine_1, width: context.measureText(flushedLine_1).width, lineEnding: "" });
|
10977
10977
|
flushedLine_1 = "";
|
10978
10978
|
}
|
10979
10979
|
flushedLine_1 += char;
|