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() } }