Fixed tracks with no info (name, album, artist)

This commit is contained in:
9and3r
2014-07-31 21:55:25 +02:00
parent 91d1e94a5e
commit 33199f85ca
7 changed files with 132 additions and 71 deletions

View File

@@ -39,9 +39,10 @@ class TouchScreen(pykka.ThreadingActor, core.CoreListener):
for event in pygame.event.get():
if event.type == pygame.QUIT:
self.running = False
if event.type == pygame.KEYUP and event.key == pygame.K_q:
elif event.type == pygame.KEYUP and event.key == pygame.K_q:
self.running = False
self.screen_manager.event(event)
else:
self.screen_manager.event(event)
pygame.quit()
def on_start(self):