Commit dc48cea5 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander.Trofimov

при вложенных клипах были проблемы

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51089 954022d7-b5bf-4e40-9824-e11837661b57
parent dbc43fd1
......@@ -3487,12 +3487,20 @@ function DrawingObjects() {
canvas.m_oContext.beginPath();
canvas.m_oContext.rect(x, y, w, h);
canvas.m_oContext.clip();
// этот сэйв нужен для восстановления сложных вложенных клипов
canvas.m_oContext.save();
}
}
_this.restoreGraphicsCanvas = function(canvas) {
if ( canvas instanceof CGraphics )
canvas.m_oContext.restore();
{
// этот рестор нужен для восстановления сложных вложенных клипов
canvas.m_oContext.restore();
canvas.m_oContext.restore();
}
}
//-----------------------------------------------------------------------------------
......
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