Merge pull request #1461 from fonttools/designspaceLib-minor-cleanup

[designspaceLib] Remove InstanceDescriptor.mutedGlyphNames
This commit is contained in:
Cosimo Lupo 2019-01-19 15:06:41 +00:00 committed by GitHub
commit d386687d1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View File

@ -216,8 +216,6 @@ Attributes
- ``glyphs``: dict for special master definitions for glyphs. If glyphs - ``glyphs``: dict for special master definitions for glyphs. If glyphs
need special masters (to record the results of executed rules for need special masters (to record the results of executed rules for
example). MutatorMath. example). MutatorMath.
- ``mutedGlyphNames``: list of glyphnames that should be suppressed in
the generation of this instance.
- ``kerning``: bool. Indicates if this instance needs its kerning - ``kerning``: bool. Indicates if this instance needs its kerning
calculated. MutatorMath. calculated. MutatorMath.
- ``info``: bool. Indicated if this instance needs the interpolating - ``info``: bool. Indicated if this instance needs the interpolating

View File

@ -235,7 +235,6 @@ class InstanceDescriptor(SimpleDescriptor):
self.localisedStyleMapStyleName = {} self.localisedStyleMapStyleName = {}
self.localisedStyleMapFamilyName = {} self.localisedStyleMapFamilyName = {}
self.glyphs = {} self.glyphs = {}
self.mutedGlyphNames = []
self.kerning = True self.kerning = True
self.info = True self.info = True