Commit acee7e5b authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix print with max rows

parent 65c5ec4a
......@@ -1611,7 +1611,7 @@
this._prepareCellTextMetricsCache(range);
var rowModel, rowCells, rowCache, rightSide, c;
for (var r = 0; r <= maxRows; ++r) {
for (var r = 0; r < maxRows; ++r) {
if (this.height_1px > this.rows[r].height) {
continue;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment