Commit 201be8e5 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Поправил баг с оптимизацией ширины столбца

http://bugzserver/show_bug.cgi?id=22237

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@52124 954022d7-b5bf-4e40-9824-e11837661b57
parent 390f264b
......@@ -8451,7 +8451,11 @@
var lastHeight = null;
var filterButton = null;
t.cols[col].isCustomWidth = false;
for (row = 0; row < t.rows.length; ++row) {
// пересчет метрик текста
t._addCellTextToCache(col, row, /*canChangeColWidth*/c_oAscCanChangeColWidth.all);
ct = t._getCellTextCache(col, row);
if (ct === undefined) {continue;}
if (ct.flags.isMerged) {
......@@ -8461,11 +8465,6 @@
continue;
}
// пересчет метрик текста
t.cols[col].isCustomWidth = false;
t._addCellTextToCache(col, row, /*canChangeColWidth*/c_oAscCanChangeColWidth.all);
ct = t._getCellTextCache(col, row);
if (ct.metrics.height > t.maxRowHeight) {
// Запоминаем старую ширину (в случае, если у нас по высоте не уберется)
oldWidth = ct.metrics.width;
......
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