Commit 948695f5 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с передвижением границ таблицы с помощью линейки (баг 21470).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50966 954022d7-b5bf-4e40-9824-e11837661b57
parent 8d0d3239
...@@ -11727,6 +11727,12 @@ CTable.prototype = ...@@ -11727,6 +11727,12 @@ CTable.prototype =
if ( CurCol != Col - 1 ) if ( CurCol != Col - 1 )
this.TableGrid[CurCol] = this.TableGridCalc[CurCol]; this.TableGrid[CurCol] = this.TableGridCalc[CurCol];
} }
for ( var CurCol = 0; CurCol < ColsCount; CurCol++ )
{
if ( CurCol != Col - 1 )
this.Internal_UpdateCellW(CurCol);
}
} }
} }
else else
...@@ -11757,6 +11763,12 @@ CTable.prototype = ...@@ -11757,6 +11763,12 @@ CTable.prototype =
if ( CurCol != Col - 1 ) if ( CurCol != Col - 1 )
this.TableGrid[CurCol] = this.TableGridCalc[CurCol]; this.TableGrid[CurCol] = this.TableGridCalc[CurCol];
} }
for ( var CurCol = 0; CurCol < ColsCount; CurCol++ )
{
if ( CurCol != Col - 1 )
this.Internal_UpdateCellW(CurCol);
}
} }
} }
else else
......
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