Skip to content
This repository was archived by the owner on Mar 31, 2020. It is now read-only.

Commit 2af64cf

Browse files
committed
main
1 parent c564b69 commit 2af64cf

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

src/main.py

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def cleanup(self):import configparser
3535

3636
from .view import Window, View
3737
from .front import Front
38-
# from .splash import Splash
38+
from .splash import Splash
3939
from . import SETTINGS
4040

4141

@@ -52,19 +52,20 @@ def __init__(self, *args, **kwds):
5252
for name, val in parser['APP'].items():
5353
getattr(self, name)(val)
5454

55-
#self.window = Window(self)
56-
#self.window.pack(expand=True, fill='both')
57-
#elf.update()
55+
self.window = Window(self)
56+
self.window.pack(expand=True, fill='both')
57+
self.update()
5858

59-
# self.splash = Splash(self)
59+
self.splash = Splash(self)
6060
self.front = Front(self)
6161
self.front.pack(fill='both', expand=True)
62-
# self.execution_order = iter((
63-
# # self.splash,
64-
# self.front,
65-
# # self.result
66-
# ))
62+
self.execution_order = iter((
63+
# self.splash,
64+
self.front,
65+
# self.result
66+
))
6767
self.update()
68+
self.switch()
6869

6970
def switch(self):
7071
try:

0 commit comments

Comments
 (0)