Account settings works properly; auto completion has been implemented and improved, TWBlue loads in a threaded mode

This commit is contained in:
2015-01-27 17:09:28 -06:00
parent 51957125c1
commit ff65b73232
21 changed files with 508 additions and 27 deletions

View File

@@ -10,6 +10,7 @@ from logger import logger
import logging
import platform
import application
from mysc.thread_utils import call_threaded
log = logging.getLogger("main")
def setup():
@@ -32,6 +33,8 @@ def setup():
del sm
r = mainController.Controller()
r.view.Show()
r.do_work()
call_threaded(r.start)
app.MainLoop()
setup()