Skip to content

Commit

Permalink
[subset] Don't recalculate "modified" timestamp
Browse files Browse the repository at this point in the history
To recalculate (which was the default before), use --recalc-timestamp

Fixes #115
  • Loading branch information
behdad committed May 1, 2014
1 parent 497863a commit f09164a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Lib/fontTools/subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -1824,6 +1824,7 @@ class UnknownOptionError(Exception):
notdef_outline = False # No need for notdef to have an outline really
recommended_glyphs = False # gid1, gid2, gid3 for TrueType
recalc_bounds = False # Recalculate font bounding boxes
recalc_timestamp = False # Recalculate font modified timestamp
canonical_order = False # Order tables as recommended
flavor = None # May be 'woff'

Expand Down Expand Up @@ -2113,6 +2114,7 @@ def load_font(fontFile,
allowVID=allowVID,
checkChecksums=checkChecksums,
recalcBBoxes=options.recalc_bounds,
recalcTimestamp=options.recalc_timestamp,
lazy=lazy)

# Hack:
Expand Down

0 comments on commit f09164a

Please sign in to comment.