Commit 819b83d3 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Поправил определение DefaultHeight (нужно учитывать флаг CustomHeight). Баг...

Поправил определение DefaultHeight (нужно учитывать флаг CustomHeight). Баг http://bugzserver/show_bug.cgi?id=24591

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57706 954022d7-b5bf-4e40-9824-e11837661b57
parent 594a4c89
......@@ -2847,7 +2847,8 @@ Woorksheet.prototype.setColBestFit=function(bBestFit, width, start, stop){
};
Woorksheet.prototype.getDefaultHeight=function(){
var dRes = null;
if(null != this.oSheetFormatPr.oAllRow)
// Нужно возвращать выставленную, только если флаг CustomHeight = true
if(null != this.oSheetFormatPr.oAllRow && this.oSheetFormatPr.oAllRow.CustomHeight)
dRes = this.oSheetFormatPr.oAllRow.h;
return dRes;
};
......
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