Commit 62b435cf authored by Ilya Kirillov's avatar Ilya Kirillov

Bug #32049 Исправлен баг с рассчетом интеравалов "before/after" со значением auto внутри таблиц.

parent 6c18ad18
......@@ -7956,13 +7956,8 @@ Paragraph.prototype =
Internal_CalculateAutoSpacing : function(Value, UseAuto, Para)
{
var Result = Value;
if ( true === UseAuto )
{
if ( true === Para.Parent.Is_TableCellContent() )
Result = 0;
else
Result = 14 * g_dKoef_pt_to_mm;
}
if (true === UseAuto)
Result = 14 * g_dKoef_pt_to_mm;
return Result;
},
......
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