From 3838203dff120391282c45935ded456ba9d2884d Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 5 Sep 2019 15:19:37 +0200 Subject: Apply `padding` to root in `tour` example --- examples/tour/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'examples/tour/main.rs') diff --git a/examples/tour/main.rs b/examples/tour/main.rs index 4dbd5833..1a9ba362 100644 --- a/examples/tour/main.rs +++ b/examples/tour/main.rs @@ -139,6 +139,7 @@ impl event::EventHandler for Game { let content = Column::new() .width(screen.w as u16) .height(screen.h as u16) + .padding(20) .align_items(iced::Align::Center) .justify_content(iced::Justify::Center) .push(view); -- cgit