Commit 95d99912 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix #32353

parent 6643258d
......@@ -1574,7 +1574,7 @@ asc_docs_api.prototype.UpdateParagraphProp = function(ParaPr)
if ( true === ParaPr.Spacing.BeforeAutoSpacing )
ParaPr.Spacing.Before = AscCommon.spacing_Auto;
else if ( undefined === ParaPr.Spacing.BeforeAutoSpacing )
ParaPr.Spacing.Before = UnknownValue;
ParaPr.Spacing.Before = AscCommon.UnknownValue;
if ( -1 === ParaPr.PStyle )
ParaPr.StyleName = "";
......@@ -3209,7 +3209,7 @@ asc_docs_api.prototype.sync_ParaSpacingLine = function(SpacingLine)
if ( true === SpacingLine.AfterAutoSpacing )
SpacingLine.After = AscCommon.spacing_Auto;
else if ( undefined === SpacingLine.AfterAutoSpacing )
SpacingLine.After = AscCommon.AscCommon.UnknownValue;
SpacingLine.After = AscCommon.UnknownValue;
if ( true === SpacingLine.BeforeAutoSpacing )
SpacingLine.Before = AscCommon.spacing_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