Skip to content

Commit 44063ce

Browse files
committed
Update Main.py
1 parent ee008f9 commit 44063ce

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

Main.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@
66
## RUNNING THE APPLICATION ##
77
##########################################
88

9-
#RIEN POUR TOI MAN
9+
app = QApplication(sys.argv)
10+
widget = QStackedWidget()
11+
welcomewindow = WelcomeScreen(widget)
12+
widget.addWidget(welcomewindow)
13+
widget.setFixedHeight(800)
14+
widget.setFixedWidth(1200)
15+
widget.show()
16+
sys.exit(app.exec_())
1017

1118

1219

13-
14-
15-
# This is Maximus
16-
17-
#HELLO WORLD

0 commit comments

Comments
 (0)