1
1
mirror of https://github.com/i-tu/Hasklig.git synced 2024-08-15 21:40:42 +03:00

Don't compress the SVG table

This commit is contained in:
Miguel Sousa 2017-07-26 00:24:44 -07:00
parent 4849d25c98
commit 86efd7cc1e

View File

@ -89,7 +89,7 @@ def processFontFile(fontFilePath, svgFilePathsList):
svgDocsList = [svgDocsDict[index] for index in sorted(svgDocsDict.keys())]
svgTable = ttLib.newTable(TABLE_TAG)
svgTable.compressed = True # GZIP the SVG docs
svgTable.compressed = False # GZIP the SVG docs
svgTable.docList = svgDocsList
font[TABLE_TAG] = svgTable