diff options
| author | Adrien Tétar | 2015-09-27 17:21:01 +0200 |
|---|---|---|
| committer | Adrien Tétar | 2015-09-27 17:21:01 +0200 |
| commit | 352210207d6fc348907ece36ceaebdd77c1e420f (patch) | |
| tree | 350ebc291a21091841b72216e48317105f764e36 | |
| parent | ecfddbb28cf3738de089e4fa3b94dcaa0ba441ed (diff) | |
| download | trufont-352210207d6fc348907ece36ceaebdd77c1e420f.tar.bz2 | |
fontView: use the custom Font class
| -rw-r--r-- | Lib/defconQt/fontView.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/defconQt/fontView.py b/Lib/defconQt/fontView.py index 86ae719..c3e4854 100644 --- a/Lib/defconQt/fontView.py +++ b/Lib/defconQt/fontView.py @@ -357,7 +357,7 @@ class MainWindow(QMainWindow): path = os.path.dirname(path) # TODO: I note that a change of self.font often goes with setWindowTitle(). # Be more DRY. - self.font = Font(path) + self.font = TFont(path) self.setWindowTitle() def saveFile(self, path=None): |
