Skip to content

Commit

Permalink
Fix manuscript tool font issue (#1863)
Browse files Browse the repository at this point in the history
  • Loading branch information
vkbo authored May 13, 2024
2 parents 2dbd3e2 + a8101c2 commit e4acfb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion novelwriter/tools/manuscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ def setTextFont(self, family: str, size: int) -> None:
font = QFont()
font.setFamily(family)
font.setPointSize(size)
self.setFont(font)
self.document().setDefaultFont(font)
return

##
Expand Down

0 comments on commit e4acfb4

Please sign in to comment.