Commit 736552e5 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг, что при Redo не обновлялись стили ячеек таблицы (баг 28034).

)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64614 954022d7-b5bf-4e40-9824-e11837661b57
parent 49257400
...@@ -5747,7 +5747,6 @@ CTable.prototype = ...@@ -5747,7 +5747,6 @@ CTable.prototype =
this.Internal_ReIndexing(Data.Pos); this.Internal_ReIndexing(Data.Pos);
this.Recalc_CompiledPr2(); this.Recalc_CompiledPr2();
break; break;
} }
...@@ -5759,7 +5758,6 @@ CTable.prototype = ...@@ -5759,7 +5758,6 @@ CTable.prototype =
this.Internal_ReIndexing(Data.Pos); this.Internal_ReIndexing(Data.Pos);
this.Recalc_CompiledPr2(); this.Recalc_CompiledPr2();
break; break;
} }
...@@ -6035,7 +6033,7 @@ CTable.prototype = ...@@ -6035,7 +6033,7 @@ CTable.prototype =
this.RowsInfo.splice( Data.Pos, 0, Data.Item.RowsInfo ); this.RowsInfo.splice( Data.Pos, 0, Data.Item.RowsInfo );
this.Internal_ReIndexing(Data.Pos); this.Internal_ReIndexing(Data.Pos);
this.Recalc_CompiledPr2();
break; break;
} }
...@@ -6046,7 +6044,7 @@ CTable.prototype = ...@@ -6046,7 +6044,7 @@ CTable.prototype =
this.RowsInfo.splice( Data.Pos, 1 ); this.RowsInfo.splice( Data.Pos, 1 );
this.Internal_ReIndexing(Data.Pos); this.Internal_ReIndexing(Data.Pos);
this.Recalc_CompiledPr2();
break; break;
} }
...@@ -7017,7 +7015,7 @@ CTable.prototype = ...@@ -7017,7 +7015,7 @@ CTable.prototype =
{ {
// Bool : Inline // Bool : Inline
this.Inline = Reader.GetBool() this.Inline = Reader.GetBool();
break; 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