Commit 5497454f authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Баг с перескакиванием вордарта в левый верхний угол при изменении свойств с помощью слайдера.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67158 954022d7-b5bf-4e40-9824-e11837661b57
parent b50a1a7a
...@@ -2089,7 +2089,18 @@ DrawingObjectsController.prototype = ...@@ -2089,7 +2089,18 @@ DrawingObjectsController.prototype =
if(oParaTextPr) if(oParaTextPr)
{ {
bRecalcText = true; bRecalcText = true;
if(this.document && this.document.TurnOff_Recalculate)
{
this.document.TurnOff_Recalculate();
}
this.paragraphAdd(oParaTextPr); this.paragraphAdd(oParaTextPr);
if(this.document && this.document.TurnOn_Recalculate)
{
this.document.TurnOn_Recalculate();
}
} }
var oPreset = oAscTextArtProperties.asc_getForm(); var oPreset = oAscTextArtProperties.asc_getForm();
if(typeof oPreset === "string") if(typeof oPreset === "string")
......
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