Commit 654e089f authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Баг с непрорисованными картинками.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59810 954022d7-b5bf-4e40-9824-e11837661b57
parent c31aa149
......@@ -1235,8 +1235,14 @@ GraphicOption.prototype.getUpdatedRange = function() {
case c_oAscGraphicOption.ScrollVertical:
case c_oAscGraphicOption.ScrollHorizontal: {
vr = this.range.clone();
this.checkCol(++vr.c2);
this.checkRow(++vr.r2);
var col = vr.c2, row;
if(col < gc_nMaxCol - 1)
++col;
if(row < gc_nMaxRow - 1)
++row;
this.checkCol(col);
this.checkRow(row);
}
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