Skip to content

Commit

Permalink
Merge pull request #571 from googlefonts/builder-pre-filter
Browse files Browse the repository at this point in the history
builder: set components filters so they are post filters
  • Loading branch information
m4rc1e authored Jun 16, 2022
2 parents 122efb8 + b613089 commit 87a8b94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/gftools/builder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,12 +319,12 @@ def run_fontmake(self, source, args):
):
if self.config["flattenComponents"]:
filters.append(
FlattenComponentsFilter(pre=True)
FlattenComponentsFilter()
)

if self.config["decomposeTransformedComponents"]:
filters.append(
DecomposeTransformedComponentsFilter(pre=True)
DecomposeTransformedComponentsFilter()
)
# ... will run the filters in the ufo's lib,
# https://github.com/googlefonts/fontmake/issues/872
Expand Down

0 comments on commit 87a8b94

Please sign in to comment.