aboutsummaryrefslogtreecommitdiffstats
path: root/Lib/defconQt/__main__.py
diff options
context:
space:
mode:
authorAdrien Tétar2015-09-21 20:40:35 +0200
committerAdrien Tétar2015-09-21 20:40:35 +0200
commitf83831e31597e8c811f5b3b75cb98a0ff3590a8c (patch)
tree81665d9e00cf3752bd245b1c64a920b1781cc669 /Lib/defconQt/__main__.py
parent748bb567eef19dcd8e067934786950c5866dc580 (diff)
downloadtrufont-f83831e31597e8c811f5b3b75cb98a0ff3590a8c.tar.bz2
meta: refactorings and cleanups, fontView: partial rewrite, new AddGlyphsWindow, extract cells widget to a separate location, support CharacterSet objects fully
Diffstat (limited to 'Lib/defconQt/__main__.py')
-rw-r--r--Lib/defconQt/__main__.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/defconQt/__main__.py b/Lib/defconQt/__main__.py
index babcc73..07f273c 100644
--- a/Lib/defconQt/__main__.py
+++ b/Lib/defconQt/__main__.py
@@ -19,8 +19,7 @@ representationFactories.registerAllFactories()
#with PyCallGraph(output=GraphvizOutput()):
app = QApplication(sys.argv)
# TODO: http://stackoverflow.com/a/21330349/2037879
-app.setWindowIcon(QIcon("resources/icon.png"))
+app.setWindowIcon(QIcon("defconQt/resources/icon.png"))
window = MainWindow(Font(ufoFile))
-window.resize(605, 430)
window.show()
sys.exit(app.exec_())