Skip to content

Commit

Permalink
Merge pull request '[se] Fix bug 69676' (#620) from fix/bug-69676 int…
Browse files Browse the repository at this point in the history
  • Loading branch information
K0R0L committed Feb 2, 2025
2 parents f134414 + 67b6d4f commit 6692252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cell/view/StringRender.js
Original file line number Diff line number Diff line change
Expand Up @@ -1293,8 +1293,8 @@
let align = this.flags ? this.flags.textAlign : null;
if (initAllLines) {
if (this.lines) {
let lineWidth = this._calcLineWidth(startPos);
for (let i = 0; i < this.lines.length; ++i) {
let lineWidth = this._calcLineWidth(this.lines[i].beg);
this.lines[i].initStartX(lineWidth, x, maxWidth, align);
}
}
Expand Down

0 comments on commit 6692252

Please sign in to comment.