Skip to content

Commit bc98951

Browse files
authored
Update whodat.py
1 parent 19dc463 commit bc98951

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

whodat.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import sys
22
from PyQt5.QtCore import Qt
33
from PyQt5.QtWidgets import QApplication
4+
from PyQt5.QtGui import QFont
45
from gui import MainWindow
56

67
if __name__ == "__main__":
@@ -10,4 +11,7 @@
1011
app = QApplication(sys.argv)
1112
window = MainWindow()
1213
window.show()
14+
font = QFont()
15+
font.setPointSize(9)
16+
app.setFont(font)
1317
sys.exit(app.exec())

0 commit comments

Comments
 (0)