diff options
Diffstat (limited to 'Lib/defconQt')
| -rw-r--r-- | Lib/defconQt/fontView.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/defconQt/fontView.py b/Lib/defconQt/fontView.py index 4b45ae0..02656f8 100644 --- a/Lib/defconQt/fontView.py +++ b/Lib/defconQt/fontView.py @@ -1024,7 +1024,8 @@ 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() |
