diff options
| author | 2023-10-27 03:58:45 +0200 | |
|---|---|---|
| committer | 2023-10-27 03:58:45 +0200 | |
| commit | 65823875791ecebf24d049cc0782e7475a37899b (patch) | |
| tree | 1088c656ef7ad9782374952045022d2c104931b2 /examples/tour/src | |
| parent | 8cc19de254c37d3123d5ea1b6513f1f34d35c7c8 (diff) | |
| parent | f1b1344d59fa7354615f560bd25ed01ad0c9f865 (diff) | |
| download | iced-65823875791ecebf24d049cc0782e7475a37899b.tar.gz iced-65823875791ecebf24d049cc0782e7475a37899b.tar.bz2 iced-65823875791ecebf24d049cc0782e7475a37899b.zip | |
Merge branch 'master' into text-editor
Diffstat (limited to '')
| -rw-r--r-- | examples/tour/src/main.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/examples/tour/src/main.rs b/examples/tour/src/main.rs index 3e3a8ad7..d46e40d1 100644 --- a/examples/tour/src/main.rs +++ b/examples/tour/src/main.rs @@ -285,7 +285,7 @@ impl<'a> Step {                      is_showing_icon, ..                  } = self                  { -                    *is_showing_icon = toggle +                    *is_showing_icon = toggle;                  }              }          }; @@ -482,7 +482,7 @@ impl<'a> Step {              column(                  Language::all()                      .iter() -                    .cloned() +                    .copied()                      .map(|language| {                          radio(                              language, | 
