diff options
Diffstat (limited to '')
| -rw-r--r-- | examples/todos/src/main.rs | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/examples/todos/src/main.rs b/examples/todos/src/main.rs index 7186b950..ee0022d5 100644 --- a/examples/todos/src/main.rs +++ b/examples/todos/src/main.rs @@ -265,8 +265,10 @@ impl Task {                  self.completed = completed;              }              TaskMessage::Edit => { +                let mut text_input = text_input::State::focused(); +                text_input.select_all();                  self.state = TaskState::Editing { -                    text_input: text_input::State::focused(), +                    text_input,                      delete_button: button::State::new(),                  };              } | 
