Skip to content

Commit

Permalink
[se] Fix bug 69676
Browse files Browse the repository at this point in the history
  • Loading branch information
GoshaZotov committed Feb 2, 2025
1 parent 642157c commit 67b6d4f
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 67b6d4f

Please sign in to comment.