diff options
Diffstat (limited to '')
| -rw-r--r-- | examples/toast/src/main.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/examples/toast/src/main.rs b/examples/toast/src/main.rs index 765afb8f..b4b4e007 100644 --- a/examples/toast/src/main.rs +++ b/examples/toast/src/main.rs @@ -120,14 +120,14 @@ impl Application for App {                  subtitle(                      "Title",                      text_input("", &self.editing.title) -                        .on_change(Message::Title) +                        .on_input(Message::Title)                          .on_submit(Message::Add)                          .into()                  ),                  subtitle(                      "Message",                      text_input("", &self.editing.body) -                        .on_change(Message::Body) +                        .on_input(Message::Body)                          .on_submit(Message::Add)                          .into()                  ), | 
