diff options
| author | Adrien Tétar | 2015-10-21 12:27:04 +0200 | 
|---|---|---|
| committer | Adrien Tétar | 2015-10-21 12:28:21 +0200 | 
| commit | 7282ab52d852815c77c6f54791aea14e2ea3e456 (patch) | |
| tree | 481811cc6d3c102e64c7550487d4056fb8fd685d /Lib/defconQt/fontView.py | |
| parent | be72e9780959796ed0bd536edd4a34eb26f9ce35 (diff) | |
| download | trufont-7282ab52d852815c77c6f54791aea14e2ea3e456.tar.bz2 | |
glyphCollectionView: fix scroll/ptSize, fontView: fix markColor
Diffstat (limited to 'Lib/defconQt/fontView.py')
| -rw-r--r-- | Lib/defconQt/fontView.py | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/Lib/defconQt/fontView.py b/Lib/defconQt/fontView.py index c3849d3..286450e 100644 --- a/Lib/defconQt/fontView.py +++ b/Lib/defconQt/fontView.py @@ -1021,8 +1021,7 @@ class MainWindow(QMainWindow):          glyphs = self.collectionWidget.glyphs          for key in self.collectionWidget.selection:              glyph = glyphs[key] -            glyph.markColor = Color( -                color.getRgbF() if color is not None else None) +            glyph.markColor = Color(color.getRgbF()) if color is not None else None      def _fontChanged(self, notification):          self.collectionWidget.update() | 
