[se] Fix bug 71398

This commit is contained in:
GoshaZotov
2024-11-03 00:00:47 +03:00
parent 7ba7ebf5db
commit f4394e8ca6

View File

@ -10845,13 +10845,12 @@
this._updateDrawingArea();
this._endRtlDrawingRendering();
if (this.workbook.getSmoothScrolling()) {
ctx.AddClipRect(clearLeft - clearOffset, y, clearWidth + clearOffset, ctxH);
this.drawingGraphicCtx.AddClipRect && this.drawingGraphicCtx.AddClipRect(clearLeft - clearOffset, y, clearWidth + clearOffset, ctxH);
ctx.AddClipRect(clearLeft - clearOffset, y, clearWidth + clearOffset + this.getRightToLeftOffset(), ctxH);
this.drawingGraphicCtx.AddClipRect && this.drawingGraphicCtx.AddClipRect(clearLeft - clearOffset, y, clearWidth + clearOffset + this.getRightToLeftOffset(), ctxH);
}
this._endRtlDrawingRendering();
// Дорисовываем необходимое
if (dx < 0 || vr.c2 !== oldEnd || oldVCE_isPartial || (clearWidth !== 0 && this.workbook.getSmoothScrolling())) {
var c1, c2;