This commit is contained in:
Andreas Gal 2014-08-01 23:32:27 -07:00
Родитель e915558235
Коммит c3d9f7832d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -775,7 +775,7 @@ MIDP.draw = function(g, anchor, x, y, w, h, cb) {
if (clipped) { if (clipped) {
ctx.save(); ctx.save();
ctx.beginPath(); ctx.beginPath();
ctx.rect(clipX1 - transX, clipY1 - transY, clipX2 - clipX1, clipY2 - clipY1); ctx.rect(clipX1, clipY1, clipX2 - clipX1, clipY2 - clipY1);
ctx.clip(); ctx.clip();
} }
x += transX; x += transX;