Skip to content

Commit

Permalink
filters: Default to keeping outlines in clearPlaceholders
Browse files Browse the repository at this point in the history
FontBook will not apply any features and will show empty glyphs
in the font icon.
  • Loading branch information
khaledhosny committed Dec 31, 2024
1 parent 391cb8c commit c80341b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/alifTools/filters/clearPlaceholders.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


class ClearPlaceholdersFilter(BaseFilter):
_kwargs = {"outlines": True, "anchors": True, "width": True}
_kwargs = {"outlines": False, "anchors": True, "width": True}

def set_context(self, font, glyphSet):
context = super().set_context(font, glyphSet)
Expand Down

0 comments on commit c80341b

Please sign in to comment.