diff options
| author | Malte Voos <git@mal.tc> | 2026-01-01 19:26:01 +0100 |
|---|---|---|
| committer | Malte Voos <git@mal.tc> | 2026-01-04 00:38:38 +0100 |
| commit | c8b942b1fbe8fdab1db0e0f56d3ed86a7486b578 (patch) | |
| tree | cf344838c96ad9bd7bd97d0216c43d6a858f4a60 /src/player.rs | |
| parent | 80a1c8234fc5b6f56bd1f2df4e6118e57631f523 (diff) | |
| download | lleap-c8b942b1fbe8fdab1db0e0f56d3ed86a7486b578.tar.gz lleap-c8b942b1fbe8fdab1db0e0f56d3ed86a7486b578.zip | |
Diffstat (limited to 'src/player.rs')
| -rw-r--r-- | src/player.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/player.rs b/src/player.rs index d533f48..0804fed 100644 --- a/src/player.rs +++ b/src/player.rs @@ -205,9 +205,12 @@ impl SimpleComponent for Player { } } PlayMessage::Buffering(_) => { + // println!("buffering") // TODO } - _ => {} + msg => { + // println!("msg: {:?}", msg); + } } glib::ControlFlow::Continue |