diff options
| author | 2024-01-12 14:41:40 +0100 | |
|---|---|---|
| committer | 2024-01-12 14:41:40 +0100 | |
| commit | 50c310fd9f692eafb2350827636ffbd6d7b6c9b9 (patch) | |
| tree | 0f1ab4182a0cce7469e01881c095e0c3988b3f9a /examples/tour/src | |
| parent | 63e9adac56e9a4f21ec82137329d7c455fbf630b (diff) | |
| parent | 11474bdc3e1a43e6c167d7b98f22d87933dbd2b6 (diff) | |
| download | iced-50c310fd9f692eafb2350827636ffbd6d7b6c9b9.tar.gz iced-50c310fd9f692eafb2350827636ffbd6d7b6c9b9.tar.bz2 iced-50c310fd9f692eafb2350827636ffbd6d7b6c9b9.zip | |
Merge pull request #2192 from iced-rs/fix/layout-inconsistencies
Layout consistency
Diffstat (limited to '')
| -rw-r--r-- | examples/tour/src/main.rs | 7 | 
1 files changed, 1 insertions, 6 deletions
| diff --git a/examples/tour/src/main.rs b/examples/tour/src/main.rs index 7003d8ae..8633bc0a 100644 --- a/examples/tour/src/main.rs +++ b/examples/tour/src/main.rs @@ -509,7 +509,6 @@ impl<'a> Step {                          )                      })                      .map(Element::from) -                    .collect()              )              .spacing(10)          ] @@ -692,11 +691,7 @@ fn ferris<'a>(  }  fn button<'a, Message: Clone>(label: &str) -> Button<'a, Message> { -    iced::widget::button( -        text(label).horizontal_alignment(alignment::Horizontal::Center), -    ) -    .padding(12) -    .width(100) +    iced::widget::button(text(label)).padding([12, 24])  }  fn color_slider<'a>( | 
