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 c3849d3..02656f8 100644 --- a/Lib/defconQt/fontView.py +++ b/Lib/defconQt/fontView.py @@ -468,6 +468,9 @@ class SortDialog(QDialog):          self.setWindowTitle("Sort…")          self.smartSortBox = QRadioButton("Smart sort", self) +        self.smartSortBox.setToolTip("A combination of simple, complex and " +                                     "custom sorts that give optimized " +                                     "ordering results.")          self.glyphSetBox = QRadioButton("Glyph set", self)          self.glyphSetBox.toggled.connect(self.glyphSetToggle)          self.glyphSetDrop = QComboBox(self) @@ -1022,7 +1025,7 @@ class MainWindow(QMainWindow):          for key in self.collectionWidget.selection:              glyph = glyphs[key]              glyph.markColor = Color( -                color.getRgbF() if color is not None else None) +                color.getRgbF()) if color is not None else None      def _fontChanged(self, notification):          self.collectionWidget.update()  | 
