Skip to content

Commit

Permalink
fix: lauch icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Decodetalkers committed Aug 9, 2024
1 parent 83bbe68 commit 9ecf0f6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,12 @@ impl LalaMusicBar {
let sound_slider = self.sound_slider();
let col = if let Some(art_url) = art_url {
row![
button("L").on_press(Message::ToggleLauncher),
button(
svg(svg::Handle::from_memory(LAUNCHER_SVG))
.width(25.)
.height(25.)
)
.on_press(Message::ToggleLauncher),
Space::with_width(Length::Fixed(5.)),
image(image::Handle::from_path(art_url)),
title,
Expand Down

0 comments on commit 9ecf0f6

Please sign in to comment.