Added progressbar

This commit is contained in:
9and3r
2014-07-19 22:09:41 +02:00
parent 1e2df3dba9
commit 7137a174f8
19 changed files with 991 additions and 48 deletions

View File

@@ -31,9 +31,8 @@ class TouchScreen(pykka.ThreadingActor, core.CoreListener):
def on_start(self):
self.running=True
self.thread = Thread(target=self.start_thread)
self.thread.start()
pass
thread = Thread(target=self.start_thread)
thread.start()
def on_stop(self):
self.running = False