Commit db0c0df9 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Проверка на случай ошибочного range (на отрисовку посылать только видимую часть)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50226 954022d7-b5bf-4e40-9824-e11837661b57
parent eb4624c3
......@@ -2562,6 +2562,9 @@
if (mc) {
if ((col === mc.c1 || isFirstCol) && (row === mc.r1 || isFirstRow)) {
mc = mc.intersectionSimple(this.visibleRange);
if (null === mc) {
break;
}
this._drawCellsBorders(drawingCtx, mc, true, leftFieldInPt, topFieldInPt);
}
isMerged = true;
......
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