diff options
| author | 2024-03-18 17:08:56 -0300 | |
|---|---|---|
| committer | 2024-03-18 17:08:56 -0300 | |
| commit | bf9bbf4a3edf22f21c79901999cc104cb29fccce (patch) | |
| tree | 2a2b041471940c0fc1809e3db677a0a53758181c /examples/lazy | |
| parent | 6146382676a7bff4764e86e99d0d053f5fbbc045 (diff) | |
| download | iced-bf9bbf4a3edf22f21c79901999cc104cb29fccce.tar.gz iced-bf9bbf4a3edf22f21c79901999cc104cb29fccce.tar.bz2 iced-bf9bbf4a3edf22f21c79901999cc104cb29fccce.zip | |
refactor: replace `text(format!(` with `text` macro
Diffstat (limited to 'examples/lazy')
| -rw-r--r-- | examples/lazy/src/main.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/examples/lazy/src/main.rs b/examples/lazy/src/main.rs index 2d53df93..627aba23 100644 --- a/examples/lazy/src/main.rs +++ b/examples/lazy/src/main.rs @@ -192,7 +192,7 @@ impl App {                  text_input("Add a new option", &self.input)                      .on_input(Message::InputChanged)                      .on_submit(Message::AddItem(self.input.clone())), -                button(text(format!("Toggle Order ({})", self.order))) +                button(text!("Toggle Order ({})", self.order))                      .on_press(Message::ToggleOrder)              ]              .spacing(10) | 
