Commit 1c5cef14 authored by Anna.Pavlova's avatar Anna.Pavlova Committed by Alexander.Trofimov

Поправила баг на пересчете текстовых настроек для управляющих элементов у...

Поправила баг на пересчете текстовых настроек для управляющих элементов у вложенных мат объектов (например дробь) на Apply_TextPr, связанный с последнимим заливками

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59692 954022d7-b5bf-4e40-9824-e11837661b57
parent b1e2a645
......@@ -8083,7 +8083,6 @@ ParaRun.prototype.GetMathTextPrForMenu = function()
TextPr.Italic = BI.Italic;
TextPr.Bold = BI.Bold;
//TextPr.Set_FromObject(MathTextPr.GetBoldItalic());
return TextPr;
}
......
......@@ -160,9 +160,19 @@ CMathBase.prototype =
// если первый элемент - мат объект, то берутся его CtrPrp
GetTPrpToControlLetter: function()
{
this.Set_CompiledCtrPrp(this.Parent, this.ParaMath);
var TextPrControlLetter;
return this.TextPrControlLetter;
if(this.bInside)
{
TextPrControlLetter = this.Parent.GetTPrpToControlLetter();
}
else
{
this.Set_CompiledCtrPrp(this.Parent, this.ParaMath);
TextPrControlLetter = this.TextPrControlLetter;
}
return TextPrControlLetter;
},
fillPlaceholders: function()
{
......
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