From 6d3a657a5f0b15ac23e877acc68828b69e9b8881 Mon Sep 17 00:00:00 2001 From: James Godfrey-Kittle Date: Tue, 12 May 2015 14:02:21 -0700 Subject: Copy kerning info when copying FFonts. This affects the creation of condensed masters, without it they had no kerning info. --- scripts/lib/fontbuild/mix.py | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts/lib/fontbuild') diff --git a/scripts/lib/fontbuild/mix.py b/scripts/lib/fontbuild/mix.py index 7123213..ef190ef 100644 --- a/scripts/lib/fontbuild/mix.py +++ b/scripts/lib/fontbuild/mix.py @@ -35,6 +35,7 @@ class FFont: self.glyphs[key] = g.copy() self.hstems = list(f.hstems) self.vstems = list(f.vstems) + self.kerning = dict(f.kerning) elif f != None: self.copyFromFont(f) -- cgit v1.2.3