Skip to content

Commit

Permalink
Merge pull request #610 from veraPDF/signature_content
Browse files Browse the repository at this point in the history
Fix getInheritedStringAttribute in GFOpMarkedContent
  • Loading branch information
MaximPlusov authored Nov 9, 2023
2 parents e69959c + f92ee47 commit c08c30a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public COSString getInheritedAlt() {
public COSString getInheritedStringAttribute(ASAtom key) {
COSString string = getStringAttribute(key);
if (string != null) {
return null;
return string;
}
if (markedContent != null) {
string = markedContent.getInheritedStringAttribute(key);
Expand Down

0 comments on commit c08c30a

Please sign in to comment.