Commit 034df91b authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

правка бага 21468 - [CoEdit] У пользователя некорректно отрисовывается группа...

правка бага 21468 - [CoEdit] У пользователя некорректно отрисовывается группа автофигур при изменении ее выравнивания

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50852 954022d7-b5bf-4e40-9824-e11837661b57
parent e052209e
......@@ -1873,6 +1873,8 @@ CGroupShape.prototype =
this.spPr.xfrm.rot = r.GetDouble();
this.recalcInfo.recalculateTransform = true;
this.recalcInfo.recalculateTransformText = true;
this.recalcTransform();
break;
}
case historyitem_SetShapeOffset:
......@@ -1881,6 +1883,8 @@ CGroupShape.prototype =
this.spPr.xfrm.offY = r.GetDouble();
this.recalcInfo.recalculateTransform = true;
this.recalcInfo.recalculateTransformText = true;
this.recalcTransform();
break;
}
......@@ -1892,6 +1896,8 @@ CGroupShape.prototype =
this.recalcInfo.recalculateTransformText = true;
this.recalcInfo.recalculateContent = true;
this.recalcInfo.recalculateGeometry = true;
this.recalcTransform();
break;
}
......@@ -1902,6 +1908,8 @@ CGroupShape.prototype =
this.spPr.xfrm.chOffY = r.GetDouble();
this.recalcInfo.recalculateTransform = true;
this.recalcInfo.recalculateTransformText = true;
this.recalcTransform();
break;
}
......@@ -1914,6 +1922,8 @@ CGroupShape.prototype =
this.recalcInfo.recalculateTransformText = true;
this.recalcInfo.recalculateContent = true;
this.recalcInfo.recalculateGeometry = true;
this.recalcTransform();
break;
}
case historyitem_SetShapeFlips:
......@@ -1923,6 +1933,8 @@ CGroupShape.prototype =
this.recalcInfo.recalculateTransform = true;
this.recalcInfo.recalculateTransformText = true;
this.recalcInfo.recalculateContent = true;
this.recalcTransform();
break;
}
case historyitem_SetSetNvSpPr:
......
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