Skip to content

Commit

Permalink
reverseOutlineDirection was upside down (#935)
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens authored May 1, 2024
1 parent 443c3a5 commit 865a7af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/gftools/builder/recipeproviders/googlefonts.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def fontmake_args(self, source, variable=False):

if self.config.get("logLevel") != "WARN":
args += " --verbose " + self.config["logLevel"]
if self.config.get("reverseOutlineDirection"):
if self.config.get("reverseOutlineDirection", True) is False:
args += " --keep-direction"
if self.config.get("removeOutlineOverlaps") is False:
args += " --keep-overlaps"
Expand Down

0 comments on commit 865a7af

Please sign in to comment.