Commit 764ef8f5 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с тем, что не копировались настройки позиции для flow-таблиц (баг 27445).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60409 954022d7-b5bf-4e40-9824-e11837661b57
parent 95a5e47c
......@@ -2756,6 +2756,9 @@ CTable.prototype =
var Table = new CTable( this.DrawingDocument, Parent, this.Inline, 0, 0, 0, 0, 0, 0, 0, TableGrid, this.bPresentation);
Table.Set_PositionH(this.PositionH.RelativeFrom, this.PositionH.Align, this.PositionH.Value);
Table.Set_PositionV(this.PositionV.RelativeFrom, this.PositionV.Align, this.PositionV.Value);
// Копируем настройки
Table.Set_TableStyle( this.TableStyle );
Table.Set_TableLook( this.TableLook.Copy() );
......
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