diff options
| author | Adrien Tétar | 2015-11-06 19:40:50 +0100 | 
|---|---|---|
| committer | Adrien Tétar | 2015-11-06 19:40:50 +0100 | 
| commit | 0cceeaeda8f10da7a015f000d7673b97622f513d (patch) | |
| tree | 371b1cbefe2934d53b0b600f8465cd68119b3f6a /Lib/defconQt/glyphView.py | |
| parent | fd19b960d694dc1f12aaa9b4eaebe2cda6513a14 (diff) | |
| parent | 7168ce02c10032046f736480240ec1cdb8665803 (diff) | |
| download | trufont-0cceeaeda8f10da7a015f000d7673b97622f513d.tar.bz2 | |
Merge pull request #120 from trufont/patch-17
fontView, glyphView: don't copy name
Diffstat (limited to 'Lib/defconQt/glyphView.py')
| -rw-r--r-- | Lib/defconQt/glyphView.py | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/Lib/defconQt/glyphView.py b/Lib/defconQt/glyphView.py index 74af3b3..6eb9eee 100644 --- a/Lib/defconQt/glyphView.py +++ b/Lib/defconQt/glyphView.py @@ -1415,7 +1415,9 @@ class GlyphScene(QGraphicsScene):              # pass the glyph to a controller object that holds a self._pen              copyGlyph.width = self._glyphObject.width              mimeData.setData("application/x-defconQt-glyph-data", -                             pickle.dumps([copyGlyph.serialize()])) +                             pickle.dumps([copyGlyph.serialize( +                                 blacklist=("name", "unicode") +                             )]))              clipboard.setMimeData(mimeData)              event.accept()              return | 
