Skip to content

Commit

Permalink
#1169 missed an instance to replace w/macro.
Browse files Browse the repository at this point in the history
  • Loading branch information
karlkleinpaste committed Aug 13, 2024
1 parent 34771e1 commit d41d4e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/display.cc
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ CleanupContent(GString *text,
if (ops->respect_font_faces == 0)
ClearFontFaces((gchar *)text->str);
else if ((ops->respect_font_faces == -1) && // "unknown"
(strcasestr(text->str, "<font face=\"") != NULL)) {
(strcasestr(text->str, CLEAR_FONT_NAME) != NULL)) {
ops->respect_font_faces = 1; // now known.
main_save_module_options(name, "Respect Font Faces", 1);
}
Expand Down

0 comments on commit d41d4e8

Please sign in to comment.