Skip to content

Commit

Permalink
Merge pull request #1025 from googlefonts/feature-writer-order
Browse files Browse the repository at this point in the history
Fix the order of feature writers
  • Loading branch information
khaledhosny authored Aug 29, 2024
2 parents eb79883 + 22695d9 commit b538338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/glyphsLib/builder/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,13 +206,13 @@
UFO2FT_META_TABLE_KEY = PUBLIC_PREFIX + "openTypeMeta"

DEFAULT_FEATURE_WRITERS = [
{"class": "CursFeatureWriter"},
{"class": "KernFeatureWriter"},
{
"module": "glyphsLib.featureWriters.markFeatureWriter",
"class": "ContextualMarkFeatureWriter",
},
{"class": "GdefFeatureWriter"},
{"class": "CursFeatureWriter"},
]

DEFAULT_LAYER_NAME = PUBLIC_PREFIX + "default"
Expand Down

0 comments on commit b538338

Please sign in to comment.