Skip to content

Commit

Permalink
Fix getInheritedStringAttribute in GFOpMarkedContent
Browse files Browse the repository at this point in the history
MaximPlusov committed Nov 9, 2023
1 parent 9852bb4 commit f92ee47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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);

0 comments on commit f92ee47

Please sign in to comment.