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

Поправил default высоту у строк, рассчитываемую нами

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67056 954022d7-b5bf-4e40-9824-e11837661b57
parent 759b0197
......@@ -1162,15 +1162,15 @@
var defaultFontSize = this.model.getDefaultFontSize();
// ToDo разобраться со значениями
this.maxRowHeight = asc_calcnpt(c_oAscMaxRowHeight, this._getPPIY());
this.defaultRowDescender = this._calcRowDescender(defaultFontSize);
gc_dDefaultRowHeightAttribute = this.defaultRowHeight = this.model.getDefaultHeight() ||
asc_calcnpt(defaultFontSize * this.vspRatio, this._getPPIY()) + this.height_1px;
this._setFont(undefined, this.model.getDefaultFontName(), defaultFontSize);
var tm = this._roundTextMetrics(this.stringRender.measureString("A"));
this.headersHeightByFont = tm.height;
this.maxRowHeight = asc_calcnpt(c_oAscMaxRowHeight, this._getPPIY());
this.defaultRowDescender = this._calcRowDescender(defaultFontSize);
gc_dDefaultRowHeightAttribute = this.defaultRowHeight = this.model.getDefaultHeight() ||
Math.max(asc_calcnpt(defaultFontSize * this.vspRatio, this._getPPIY()) + this.height_1px, this.headersHeightByFont);
// Инициализируем число колонок и строк (при открытии). Причем нужно поставить на 1 больше,
// чтобы могли показать последнюю строку/столбец (http://bugzserver/show_bug.cgi?id=23513)
this.nColsCount = Math.min(this.model.getColsCount() + 1, gc_nMaxCol);
......
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