diff options
Diffstat (limited to '')
| -rw-r--r-- | examples/tour/src/main.rs | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/examples/tour/src/main.rs b/examples/tour/src/main.rs index bae6490d..59107258 100644 --- a/examples/tour/src/main.rs +++ b/examples/tour/src/main.rs @@ -76,10 +76,10 @@ impl Tour {              } else {                  content              }) -            .center_x(), +            .center_x(Length::Fill),          ); -        container(scrollable).center_y().into() +        container(scrollable).center_y(Length::Fill).into()      }  } @@ -669,7 +669,7 @@ fn ferris<'a>(          .filter_method(filter_method)          .width(width),      ) -    .center_x() +    .center_x(Length::Fill)  }  fn padded_button<Message: Clone>(label: &str) -> Button<'_, Message> { | 
