diff options
| author | Adrien Tétar | 2015-11-06 19:30:46 +0100 |
|---|---|---|
| committer | Adrien Tétar | 2015-11-06 19:37:21 +0100 |
| commit | 7168ce02c10032046f736480240ec1cdb8665803 (patch) | |
| tree | 13175081531ef3cca1325946a614df4885ad0539 /Lib/defconQt/glyphView.py | |
| parent | 9551e20b7c92c79906815a66b99757c322db518b (diff) | |
| download | trufont-7168ce02c10032046f736480240ec1cdb8665803.tar.bz2 | |
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 da933c2..c2aeafe 100644 --- a/Lib/defconQt/glyphView.py +++ b/Lib/defconQt/glyphView.py @@ -1333,7 +1333,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 |
