diff --git a/sources/setflag.py b/sources/setflag.py index 7059102..57f0b1b 100644 --- a/sources/setflag.py +++ b/sources/setflag.py @@ -19,7 +19,7 @@ if 'glyf' in font: if glyph.isComposite(): glyph.expand(glyf) for component in glyph.components: - component.flags = 0x4 + component.flags |= 0x4 glyph.compact(glyf) outputTTF = makeOutputFileName(inputTTF, '', extension) font.save(outputTTF)