From f13d021b22e3af7b96829d133026536d7a3779fc Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 20 Feb 2025 15:10:41 -0600 Subject: [PATCH] idk --- src/ui/song_editor.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/song_editor.rs b/src/ui/song_editor.rs index 867bae2..bf2b004 100644 --- a/src/ui/song_editor.rs +++ b/src/ui/song_editor.rs @@ -90,11 +90,11 @@ impl SongEditor { selected_font_size, Message::ChangeFontSize, ); - let title = text(&self.title); let title_input = text_input("song", &self.title) - .on_input(Message::ChangeTitle); + .on_input(Message::ChangeTitle) + .label("Song Title"); let toolbar = row![font_selector, font_size]; - let column = column![toolbar, title, title_input]; + let column = column![toolbar, title_input]; column.into() } }