Commit 57caf78e authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug #33833

parent 96b4ffb1
...@@ -11811,7 +11811,7 @@ CTable.prototype.Set_ContentPosition = function(DocPos, Depth, Flag) ...@@ -11811,7 +11811,7 @@ CTable.prototype.Set_ContentPosition = function(DocPos, Depth, Flag)
{ {
case 0 : CurCell = _DocPos[Depth + 1].Position; break; case 0 : CurCell = _DocPos[Depth + 1].Position; break;
case 1 : CurCell = 0; break; case 1 : CurCell = 0; break;
case -1: CurCell = this.Content[StartRow].Get_CellsCount() - 1; break; case -1: CurCell = this.Content[CurRow].Get_CellsCount() - 1; break;
} }
var __DocPos = _DocPos, __Flag = _Flag; var __DocPos = _DocPos, __Flag = _Flag;
......
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