Commit 75a79e16 authored by Ilya Kirillov's avatar Ilya Kirillov Committed by Alexander.Trofimov

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

parent d595ea7b
......@@ -7932,13 +7932,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