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

fix bug #28837

При отрисовке бордеров для merge-ячейки не понятно зачем рисовался border для последней строки отрисовки, несмотря на то, что у нас merge ячейка

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@66991 954022d7-b5bf-4e40-9824-e11837661b57
parent 47640a44
......@@ -2942,7 +2942,7 @@
// }
}
// draw right border
if ((!mc || col === mc.c2 || isLastCol) && !t._isRightBorderErased(col, rowCache)) {
if ((!mc || col === mc.c2) && !t._isRightBorderErased(col, rowCache)) {
drawVerticalBorder(bCur, bNext, x2, y1, y2);
}
// draw top border
......@@ -2954,7 +2954,7 @@
// drawHorizontalBorder.call(this, tb, lb, lbPrev, rb, rbPrev, x1, y1, x2);
// }
}
if (!mc || row === mc.r2 || isLastRow) {
if (!mc || row === mc.r2) {
// draw bottom border
drawHorizontalBorder(bCur, bBotCur, x1, y2, x2);
}
......
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