Commit 44753a1f authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 25797 - Автофигура отрисовывается некорректно при переносе ее к нижней границе рабочей области

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57536 954022d7-b5bf-4e40-9824-e11837661b57
parent c7148da7
......@@ -564,9 +564,9 @@ function FrozenPlace(ws, type) {
}
if ( isOverlay )
_this.worksheet.overlayGraphicCtx.clearRect( x - deltaW, y - deltaH, w, h );
_this.worksheet.overlayGraphicCtx.clearRect( x - deltaW, y - deltaH, w + deltaW, h + deltaH );
else {
_this.worksheet.drawingGraphicCtx.clearRect( x - deltaW, y - deltaH, w, h );
_this.worksheet.drawingGraphicCtx.clearRect( x - deltaW, y - deltaH, w + deltaW, h + deltaH );
}
};
......
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