Skip to content

Commit

Permalink
Update bin/src/daemon.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Will Greenberg <[email protected]>
  • Loading branch information
cooperq and wgreenberg authored Jun 17, 2024
1 parent a9842fc commit ebdd32a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/src/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,11 @@ async fn update_ui(task_tracker: &TaskTracker, config: &config::Config, mut ui_
fb.draw_line(framebuffer::Color565::Green, 2);
},
2 => {
fb.draw_gif(img);
fb.draw_gif(img.unwrap());
},
3 => {
fb.draw_img(img)
}
fb.draw_img(img.unwrap())
},
128 => {
fb.draw_line(framebuffer::Color565::Cyan, 128);
fb.draw_line(framebuffer::Color565::Pink, 102);
Expand Down

0 comments on commit ebdd32a

Please sign in to comment.