From 36db2a0c66c7981155f3f8d8f9b9853bde655048 Mon Sep 17 00:00:00 2001 From: Just Date: Thu, 23 Dec 1999 12:31:19 +0000 Subject: [PATCH] fixed dumb error: recalcBBoxes goes into the TTFont constructor, not int TTFont.save. git-svn-id: svn://svn.code.sf.net/p/fonttools/code/trunk@29 4cde692c-a291-49d1-8350-778aa11640f8 --- ttCompile.py | 4 ++-- xml2tt.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ttCompile.py b/ttCompile.py index a1dce2a2b..92e8ccfa4 100644 --- a/ttCompile.py +++ b/ttCompile.py @@ -36,6 +36,6 @@ else: print __doc__ % sys.argv[0] sys.exit(2) -tt = ttLib.TTFont(ttInFile, verbose=verbose) +tt = ttLib.TTFont(ttInFile, recalcBBoxes=recalcBBoxes, verbose=verbose) tt.importXML(xmlPath) -tt.save(ttPath, recalcBBoxes=recalcBBoxes) +tt.save(ttPath) diff --git a/xml2tt.py b/xml2tt.py index a1dce2a2b..92e8ccfa4 100644 --- a/xml2tt.py +++ b/xml2tt.py @@ -36,6 +36,6 @@ else: print __doc__ % sys.argv[0] sys.exit(2) -tt = ttLib.TTFont(ttInFile, verbose=verbose) +tt = ttLib.TTFont(ttInFile, recalcBBoxes=recalcBBoxes, verbose=verbose) tt.importXML(xmlPath) -tt.save(ttPath, recalcBBoxes=recalcBBoxes) +tt.save(ttPath)