Commit 958dfe18 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с копированием формул. Исправлен баг с компиляецией текстовых настроек.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59610 954022d7-b5bf-4e40-9824-e11837661b57
parent f78d8ca6
......@@ -1128,7 +1128,7 @@ ParaMath.prototype.MathToImageConverter = function(bCopy, _canvasInput, _widthPx
g.transform(1,0,0,1,0,0);
this.Root.draw(0, 0, g);
par.Draw(0, g);
window.IsShapeToImageConverter = false;
......
......@@ -4644,8 +4644,8 @@ ParaRun.prototype.Get_CompiledPr = function(bCopy)
{
if ( true === this.RecalcInfo.TextPr )
{
this.CompiledPr = this.Internal_Compile_Pr();
this.RecalcInfo.TextPr = false;
this.CompiledPr = this.Internal_Compile_Pr();
}
if ( false === bCopy )
......@@ -4662,6 +4662,7 @@ ParaRun.prototype.Internal_Compile_Pr = function ()
// чтобы не выпадало ошибок сгенерим дефолтовые настройки
var TextPr = new CTextPr();
TextPr.Init_Default();
this.RecalcInfo.TextPr = true;
return TextPr;
}
......@@ -4684,6 +4685,7 @@ ParaRun.prototype.Internal_Compile_Pr = function ()
// чтобы не выпадало ошибок сгенерим дефолтовые настройки
var TextPr = new CTextPr();
TextPr.Init_Default();
this.RecalcInfo.TextPr = true;
return TextPr;
}
......
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