Commit 631867e3 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Поправил bug #26605

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68042 954022d7-b5bf-4e40-9824-e11837661b57
parent 3f84d323
...@@ -4527,6 +4527,10 @@ ...@@ -4527,6 +4527,10 @@
var fMergedRows = false; // Замержены ли строки (если да, то автоподбор высоты не должен работать) var fMergedRows = false; // Замержены ли строки (если да, то автоподбор высоты не должен работать)
if (null !== mc) { if (null !== mc) {
if (col !== mc.c1 || row !== mc.r1) { if (col !== mc.c1 || row !== mc.r1) {
// Проверим внесена ли первая ячейка в cache (иначе если была скрыта первая строка или первый столбец, то мы не внесем)
if (undefined === this._getCellTextCache(mc.c1, mc.r1, true)) {
return this._addCellTextToCache(mc.c1, mc.r1, canChangeColWidth);
}
return mc.c2; return mc.c2;
} // skip other merged cell from range } // skip other merged cell from range
if (mc.c1 !== mc.c2) { if (mc.c1 !== mc.c2) {
......
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