Commit 4fbb2cb2 authored by Ilya Kirillov's avatar Ilya Kirillov

Fix bug #32460 Сделано, чтобы пустая формула добавлялась с плейсхолдером.

parent 30eec637
......@@ -1275,6 +1275,14 @@ CMathContent.prototype.Correct_Content = function(bInnerCorrection)
this.Add_ToContent(0, NewMathRun);
}
// Если единственный элемент данного контента ран и он пустой, заполняем его плейсхолдером.
if (1 === this.Content.length && para_Math_Run === this.Content[0].Type && true === this.Content[0].Is_Empty())
{
var oPlaceHolder = new CMathText();
oPlaceHolder.fillPlaceholders();
this.Content[0].Add_ToContent(0, oPlaceHolder);
}
// не корректируем, если в контенте только один плейсхолдер
var bOnlyPlh = this.Content.length == 1 && this.Content[0].OnlyOnePlaceholder();
......
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