Skip to content

Commit

Permalink
[mutator] Remove DSIG table if present
Browse files Browse the repository at this point in the history
Fixes #1480
  • Loading branch information
behdad committed Oct 26, 2022
1 parent f379ace commit 9369edb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Lib/fontTools/varLib/mutator.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@ def instantiateVariableFont(varfont, location, inplace=False, overlap=True):
else:
glyf = None

if 'DSIG' in varfont:
del varfont['DSIG']

if 'cvar' in varfont:
log.info("Mutating cvt/cvar tables")
cvar = varfont['cvar']
Expand Down

0 comments on commit 9369edb

Please sign in to comment.