Commit 7bc10afb authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

правка для бага #19267

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48042 954022d7-b5bf-4e40-9824-e11837661b57
parent b12fa739
......@@ -2715,7 +2715,8 @@ PasteProcessor.prototype =
var font_size = computedStyle.getPropertyValue( "font-size" );
if(font_size && null != (font_size = this._ValueToMm(font_size)))
{
Spacing.Line = parseInt(100 * obj.val / font_size) / 100;
if(font_size != 0)
Spacing.Line = parseInt(100 * obj.val / font_size) / 100;
Spacing.LineRule = linerule_Auto;
}
}
......
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