Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit ca94232

Browse files
committed
ready for pull
1 parent 22bfb7a commit ca94232

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1-
1+
from PyQt5.QtWidgets import *
2+
import sys
3+
4+
from FormMain import FormMain
5+
6+
if __name__ == '__main__':
7+
app = QApplication(sys.argv)
8+
t = FormMain()
9+
t.show()
10+
app.exec_()

Plain_Craft_Launcher_2/FormMain.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,3 @@ def onResize(self, event):
3737
self.container.setGeometry(9, 9, self.width() - 18, self.height() - 18)
3838

3939

40-
if __name__ == '__main__':
41-
app = QApplication(sys.argv)
42-
t = FormMain()
43-
t.show()
44-
app.exec_()
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from .ModLogging import *
2+
from .ModSetup import *

0 commit comments

Comments
 (0)