diff options
| author | Adrien Tétar | 2015-06-12 22:20:49 +0200 |
|---|---|---|
| committer | Adrien Tétar | 2015-06-12 22:20:49 +0200 |
| commit | 9faef52dee40d3f39e7e85c9ca1db97022ffb066 (patch) | |
| tree | a4590f1b1df48db8b6539b34435eb3b13b53c62e /Lib/defconQt/fontInfo.py | |
| parent | cd296f4613191f474a700e8330ec29c2a0917189 (diff) | |
| download | trufont-9faef52dee40d3f39e7e85c9ca1db97022ffb066.tar.bz2 | |
Shufflings, more correctness for selection code (but needs refactoring b/w press/release), more glyphView functionality
Diffstat (limited to 'Lib/defconQt/fontInfo.py')
| -rw-r--r-- | Lib/defconQt/fontInfo.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/defconQt/fontInfo.py b/Lib/defconQt/fontInfo.py index bc9b9f2..3ffcf35 100644 --- a/Lib/defconQt/fontInfo.py +++ b/Lib/defconQt/fontInfo.py @@ -529,19 +529,19 @@ class PostScriptTab(QWidget): hintingLayout = QGridLayout(self) blueValuesLabel = QLabel("Blue values:", self) - blueValues = " ".join((str(val) for val in font.info.postscriptBlueValues)) + blueValues = " ".join(str(val) for val in font.info.postscriptBlueValues) self.blueValuesEdit = QLineEdit(blueValues, self) otherBluesLabel = QLabel("Other blues:", self) - otherBlues = " ".join((str(val) for val in font.info.postscriptOtherBlues)) + otherBlues = " ".join(str(val) for val in font.info.postscriptOtherBlues) self.otherBluesEdit = QLineEdit(otherBlues, self) familyBluesLabel = QLabel("Family blues:", self) - familyBlues = " ".join((str(val) for val in font.info.postscriptFamilyBlues)) + familyBlues = " ".join(str(val) for val in font.info.postscriptFamilyBlues) self.familyBluesEdit = QLineEdit(familyBlues, self) familyOtherBluesLabel = QLabel("Family other blues:", self) - familyOtherBlues = " ".join((str(val) for val in font.info.postscriptFamilyOtherBlues)) + familyOtherBlues = " ".join(str(val) for val in font.info.postscriptFamilyOtherBlues) self.familyOtherBluesEdit = QLineEdit(familyOtherBlues, self) hintingLayout.addWidget(blueValuesLabel, l, 0) @@ -561,7 +561,7 @@ class PostScriptTab(QWidget): self.blueFuzzEdit.setValidator(QDoubleValidator(self)) stemSnapHLabel = QLabel("StemSnapH:", self) - stemSnapH = " ".join((str(val) for val in font.info.postscriptStemSnapH)) + stemSnapH = " ".join(str(val) for val in font.info.postscriptStemSnapH) self.stemSnapHEdit = QLineEdit(stemSnapH, self) blueScaleLabel = QLabel("Blue scale:", self) @@ -570,7 +570,7 @@ class PostScriptTab(QWidget): self.blueScaleEdit.setValidator(QDoubleValidator(self)) stemSnapVLabel = QLabel("StemSnapV:", self) - stemSnapV = " ".join((str(val) for val in font.info.postscriptStemSnapV)) + stemSnapV = " ".join(str(val) for val in font.info.postscriptStemSnapV) self.stemSnapVEdit = QLineEdit(stemSnapV, self) blueShiftLabel = QLabel("Blue shift:", self) |
