We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19dc463 commit bc98951Copy full SHA for bc98951
whodat.py
@@ -1,6 +1,7 @@
1
import sys
2
from PyQt5.QtCore import Qt
3
from PyQt5.QtWidgets import QApplication
4
+from PyQt5.QtGui import QFont
5
from gui import MainWindow
6
7
if __name__ == "__main__":
@@ -10,4 +11,7 @@
10
11
app = QApplication(sys.argv)
12
window = MainWindow()
13
window.show()
14
+ font = QFont()
15
+ font.setPointSize(9)
16
+ app.setFont(font)
17
sys.exit(app.exec())
0 commit comments