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

Поправлен баг : когда в формуле менялась инлайновость, вызывался только...

Поправлен баг : когда в формуле менялась инлайновость, вызывался только быстрый пересчет. А нужно было полностью пересчитать формулу (т.к. в связи со сменой инлайновости размеры контентов/элементов могут поменяться)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@62928 954022d7-b5bf-4e40-9824-e11837661b57
parent 31ec75be
...@@ -1463,6 +1463,7 @@ ParaMath.prototype.Set_Inline = function(value) ...@@ -1463,6 +1463,7 @@ ParaMath.prototype.Set_Inline = function(value)
{ {
this.ParaMathRPI.bChangeInline = true; this.ParaMathRPI.bChangeInline = true;
this.ParaMathRPI.bInline = value; this.ParaMathRPI.bInline = value;
this.bFastRecalculate = false;
} }
}; };
ParaMath.prototype.Get_Inline = function() ParaMath.prototype.Get_Inline = 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