From c80341be4cc707bd88803820cf946f0e43a03fc6 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Tue, 31 Dec 2024 19:59:48 +0200 Subject: [PATCH] filters: Default to keeping outlines in clearPlaceholders FontBook will not apply any features and will show empty glyphs in the font icon. --- Lib/alifTools/filters/clearPlaceholders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/alifTools/filters/clearPlaceholders.py b/Lib/alifTools/filters/clearPlaceholders.py index 34ea660..1825f39 100644 --- a/Lib/alifTools/filters/clearPlaceholders.py +++ b/Lib/alifTools/filters/clearPlaceholders.py @@ -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)