diff options
Diffstat (limited to 'Lib/defconQt/fontView.py')
| -rw-r--r-- | Lib/defconQt/fontView.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/defconQt/fontView.py b/Lib/defconQt/fontView.py index 37dc106..86ae719 100644 --- a/Lib/defconQt/fontView.py +++ b/Lib/defconQt/fontView.py @@ -598,7 +598,10 @@ class MainWindow(QMainWindow): if ok: for name in newGlyphNames: self.newStandardGlyph(name) - glyphs.append(self.font[name]) + glyph = self.font[name] + # XXX: consider making this parametrizable in the dialog + glyph.template = True + glyphs.append(glyph) self.collectionWidget.glyphs = glyphs if sortFont: # kick-in the sort mechanism |
