Skip to content

Commit

Permalink
[pdf] No change view on meta changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KhromovNikita authored and KirillovIlya committed Jan 30, 2025
1 parent 9ab421c commit a548be4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pdf/src/annotations/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@
oDoc.History.Add(new CChangesPDFAnnotContents(this, sCurContents, contents));
}

this.SetWasChanged(true);
this.SetWasChanged(true, false);
if (bSendAddCommentEvent)
oDoc.CheckComment(this);

Expand Down Expand Up @@ -896,7 +896,7 @@

AscCommon.History.Add(new CChangesPDFAnnotModDate(this, this._modDate, sDate));
this._modDate = sDate;
this.SetWasChanged(true);
this.SetWasChanged(true, false);
};
CAnnotationBase.prototype.GetModDate = function(bPDF) {
if (this._modDate == undefined)
Expand All @@ -915,7 +915,7 @@

AscCommon.History.Add(new CChangesPDFAnnotCreationDate(this, this._creationDate, sDate));
this._creationDate = sDate;
this.SetWasChanged(true);
this.SetWasChanged(true, false);
};
CAnnotationBase.prototype.GetCreationDate = function(bPDF) {
if (this._creationDate == undefined)
Expand All @@ -935,7 +935,7 @@

AscCommon.History.Add(new CChangesPDFAnnotAuthor(this, this._author, sAuthor));
this._author = sAuthor;
this.SetWasChanged(true);
this.SetWasChanged(true, false);
};
CAnnotationBase.prototype.GetAuthor = function() {
return this._author;
Expand Down

0 comments on commit a548be4

Please sign in to comment.