Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Lib/glyphsLib/builder/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,10 @@
DEFAULT_FEATURE_WRITERS = [
{"class": "CursFeatureWriter"},
{"class": "KernFeatureWriter"},
{"class": "MarkFeatureWriter"},
# ufo2t default to `MC` prefix for mark classes, but Glyphs uses `mark`,
# since feature code can reference auto generated code, we want to match
# Glyphs here.
{"class": "MarkFeatureWriter", "options": {"markClassPrefix": "mark"}},
{"class": "GdefFeatureWriter"},
]

Expand Down
Loading