From d26b4ce6cd86b303928a0210dbf215efc1d43a33 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Mon, 2 Feb 2026 15:32:41 -0600 Subject: [PATCH] grrrrrrrrrr --- src/ui/song_editor.rs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/ui/song_editor.rs b/src/ui/song_editor.rs index a817cc0..c0589f2 100644 --- a/src/ui/song_editor.rs +++ b/src/ui/song_editor.rs @@ -222,11 +222,11 @@ impl SongEditor { self.stroke_size = stroke_size; } if let Some(stroke_color) = song.stroke_color { - let color = Hsv::from_color(stroke_color); - tasks.push( - self.stroke_color_model.update::( - ColorPickerUpdate::ActiveColor(color), - ), + self.stroke_color_model = ColorPickerModel::new( + "hex", + "rgb", + Some(Color::BLACK), + Some(stroke_color.into()), ); } if let Some(font) = song.font { @@ -1118,8 +1118,6 @@ impl SongEditor { } fn update_song(&mut self, song: Song) -> Action { - self.song = Some(song.clone()); - let font_db = Arc::clone(&self.font_db); let update_task = Task::done(Message::UpdateSong(song.clone()));