[bug] fix bug 79890

This commit is contained in:
Sergey Luzyanin
2026-02-06 18:29:56 +03:00
parent ccc19cc539
commit 6eed2e9134

View File

@ -76,13 +76,19 @@
this.LineRule = Spacing.LineRule;
if ( undefined != Spacing.Before )
{
this.Before = Spacing.Before;
this.BeforePct = undefined;
}
if ( undefined != Spacing.BeforeAutoSpacing )
this.BeforeAutoSpacing = Spacing.BeforeAutoSpacing;
if ( undefined != Spacing.After )
{
this.After = Spacing.After;
this.AfterPct = undefined;
}
if ( undefined != Spacing.AfterAutoSpacing )
this.AfterAutoSpacing = Spacing.AfterAutoSpacing;
@ -95,7 +101,7 @@
if (undefined !== Spacing.BeforeLines)
this.BeforeLines = Spacing.BeforeLines;
if (undefined !== Spacing.AfterLines)
this.AfterLines = Spacing.AfterLines;
};