Commit d203c020 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

правка бага 21097

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50563 954022d7-b5bf-4e40-9824-e11837661b57
parent cdd21864
......@@ -1987,6 +1987,7 @@ GradLin.prototype =
Write_ToBinary2 : function(Writer)
{
Writer.WriteLong(this.angle);
Writer.WriteBool(this.scale);
},
......
......@@ -1442,9 +1442,9 @@ CGeometry.prototype=
{
name: data.name,
formula: data.formula,
x: data.x,
y: data.y,
z: data.z,
x: data.x != null ? data.x : undefined,
y: data.y != null ? data.y : undefined,
z: data.z != null ? data.z : undefined,
isAdj: false
});
break;
......
......@@ -249,6 +249,11 @@ CTableId.prototype =
Class = new CBlipFill();
break;
}
case CLASS_TYPE_GRAD_LIN:
{
Class = new GradLin();
break;
}
}
if(isRealObject(Class))
......
......@@ -413,7 +413,7 @@ var UndoRedoDataTypes = new function() {
case this.GOShapeRecalcTransform: return new UndoRedoDataShapeRecalc(); break;
case this.GOAddAdjustment: return new UndoRedoDataAddAdjustment(); break;
case this.GOAddGuide: return new UndoRedoDataAddGuide(); break;
case this.GOAddCnx: return new UndoRedoDataAddGuide(); break;
case this.GOAddCnx: return new UndoRedoDataAddCnx(); break;
case this.GOHandleXY: return new UndoRedoDataAddHandleXY(); break;
case this.GOHandlePolar: return new UndoRedoDataAddHandlePolar(); break;
case this.GOAddPathCommand: return new UndoRedoDataAddPathCommand(); 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