Commit 162bcaf4 authored by Ilya Kirillov's avatar Ilya Kirillov Committed by Alexander.Trofimov

Исправлен баг с выставлением в интерфейсе процентного расположения объектов.

parent 1055cf30
......@@ -4243,7 +4243,8 @@ ParaDrawing.prototype =
RelativeFrom : this.PositionH.RelativeFrom,
UseAlign : this.PositionH.Align,
Align : ( true === this.PositionH.Align ? this.PositionH.Value : undefined ),
Value : ( true === this.PositionH.Align ? 0 : this.PositionH.Value )
Value : ( true === this.PositionH.Align ? 0 : this.PositionH.Value ),
Percent : this.PositionH.Percent
};
Props.PositionV =
......@@ -4251,7 +4252,8 @@ ParaDrawing.prototype =
RelativeFrom : this.PositionV.RelativeFrom,
UseAlign : this.PositionV.Align,
Align : ( true === this.PositionV.Align ? this.PositionV.Value : undefined ),
Value : ( true === this.PositionV.Align ? 0 : this.PositionV.Value )
Value : ( true === this.PositionV.Align ? 0 : this.PositionV.Value ),
Percent : this.PositionV.Percent
};
Props.Internal_Position = this.Internal_Position;
......
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