Commit 4b64d138 authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix Bug 35115

parent c564f84b
......@@ -951,8 +951,23 @@ Paragraph.prototype.Check_MathPara = function(MathPos)
}
// Нумерация привязанная к формуле делает ее inline.
if (true !== MathParaChecker.Found && undefined !== this.Numbering_Get())
return false;
if (true !== MathParaChecker.Found)
{
if(this.bFromDocument)
{
if(undefined !== this.Numbering_Get())
{
return false;
}
}
else
{
if(undefined !== this.Get_CompiledPr2(false).ParaPr.Bullet)
{
return false;
}
}
}
if (true !== MathParaChecker.Result)
return false;
......
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