rename player events

This commit is contained in:
Henrik Friedrichsen
2019-03-04 00:29:48 +01:00
parent bb8326af88
commit 19ae8fcbfc
3 changed files with 7 additions and 7 deletions

View File

@@ -162,7 +162,7 @@ fn main() {
trace!("event received");
match event {
Event::QueueUpdate => queue.redraw(&mut cursive),
Event::PlayState(state) => spotify.updatestate(state),
Event::Player(state) => spotify.updatestate(state),
}
}
}