Skip to content

Commit

Permalink
[se] Fix bug 72367
Browse files Browse the repository at this point in the history
  • Loading branch information
GoshaZotov committed Jan 6, 2025
1 parent 92c7919 commit 0ec061c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cell/view/WorksheetView.js
Original file line number Diff line number Diff line change
Expand Up @@ -5227,7 +5227,7 @@

oGraphics.SaveGrState();
oGraphics.transform3(new AscCommon.CMatrix());
this._AddClipRect(oGraphics, left / printScale - dLIns / printScale, top / printScale, (width - (left + right)) / printScale + (dLIns + dRIns) / printScale, (height - (top + bottom)) / printScale);
t._AddClipRect(oGraphics, left / printScale - dLIns / printScale, top / printScale, (width - (left + right)) / printScale + (dLIns + dRIns) / printScale, (height - (top + bottom)) / printScale);
oShape.draw(oGraphics);

oGraphics.RestoreGrState();
Expand Down
2 changes: 1 addition & 1 deletion word/Editor/DocumentContentElementBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -1417,7 +1417,7 @@ CDocumentContentElementBase.prototype.getLayoutScaleCoefficient = function()
};
CDocumentContentElementBase.prototype.updateTrackRevisions = function()
{
AscWord.checkElementInRevision(this);
AscWord.checkElementInRevision && AscWord.checkElementInRevision(this);
};
CDocumentContentElementBase.prototype.isPreventedPreDelete = function()
{
Expand Down

0 comments on commit 0ec061c

Please sign in to comment.