Commit 97ca6253 authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix Bug 34278

parent b0b6d9fe
...@@ -1777,8 +1777,20 @@ AscCommon.extendClass(CGroupShape, AscFormat.CGraphicObjectBase); ...@@ -1777,8 +1777,20 @@ AscCommon.extendClass(CGroupShape, AscFormat.CGraphicObjectBase);
} }
}; };
CGroupShape.prototype.Refresh_RecalcData = function() CGroupShape.prototype.Refresh_RecalcData = function(oData)
{}; {
if(oData){
switch (oData.Type){
case AscDFH.historyitem_ShapeSetBDeleted:{
if(!this.bDeleted){
this.addToRecalculate();
}
break;
}
}
}
};
CGroupShape.prototype.checkTypeCorrect = function() CGroupShape.prototype.checkTypeCorrect = function()
{ {
......
...@@ -552,6 +552,12 @@ CImageShape.prototype.Refresh_RecalcData = function(data) ...@@ -552,6 +552,12 @@ CImageShape.prototype.Refresh_RecalcData = function(data)
this.addToRecalculate(); this.addToRecalculate();
break; break;
} }
case AscDFH.historyitem_ShapeSetBDeleted:{
if(!this.bDeleted){
this.addToRecalculate();
}
break;
}
} }
}; };
......
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