Commit fda26f50 authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix bug with connectors in group

parent 9b902575
......@@ -707,8 +707,6 @@ function DrawingObjectsController(drawingObjects)
this.chartForProps = null;
this.lastOverObject = null;
this.handleEventMode = HANDLE_EVENT_MODE_HANDLE;
}
......@@ -724,12 +722,6 @@ function CanStartEditText(oController)
DrawingObjectsController.prototype =
{
handleOleDblClick: function(drawing, e, x, y, pageIndex)
{
},
getAllConnectors: function(aDrawings, allDrawings){
var _ret = allDrawings;
if(!_ret){
......
......@@ -261,6 +261,9 @@
this.w = oBounds.w;
this.h = oBounds.h;
};
CGraphicBounds.prototype.copy = function(){
return new CGraphicBounds(this.l, this.t, this.r, this.b);
};
CGraphicBounds.prototype.transform = function(oTransform){
var xlt = oTransform.TransformPointX(this.l, this.t);
......
......@@ -3472,6 +3472,7 @@ function CBinaryFileWriter()
switch(spTree[i].getObjectType())
{
case AscDFH.historyitem_type_Shape:
case AscDFH.historyitem_type_Cnx:
{
oThis.WriteShape(spTree[i]);
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