diff options
author | 2019-12-31 11:37:41 +0100 | |
---|---|---|
committer | 2019-12-31 11:37:41 +0100 | |
commit | e98471d5b60d34e54defaba6e5979ff881e380e6 (patch) | |
tree | 428d923a092bc710697762e048d7a95505cc7085 /examples/tour.rs | |
parent | fb9cc0262b30a953e8188897b74abb5106ea1fd8 (diff) | |
parent | 26de688e68347e1f6e388d01014eac89cea71afa (diff) | |
download | iced-e98471d5b60d34e54defaba6e5979ff881e380e6.tar.gz iced-e98471d5b60d34e54defaba6e5979ff881e380e6.tar.bz2 iced-e98471d5b60d34e54defaba6e5979ff881e380e6.zip |
Merge branch 'master' into feature/custom-styling
Diffstat (limited to 'examples/tour.rs')
-rw-r--r-- | examples/tour.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tour.rs b/examples/tour.rs index 2429ca4f..c7f866e8 100644 --- a/examples/tour.rs +++ b/examples/tour.rs @@ -1,7 +1,7 @@ use iced::{ button, scrollable, slider, text_input, Button, Checkbox, Color, Column, Container, Element, HorizontalAlignment, Image, Length, Radio, Row, - Sandbox, Scrollable, Settings, Slider, Text, TextInput, + Sandbox, Scrollable, Settings, Slider, Space, Text, TextInput, }; pub fn main() { @@ -68,7 +68,7 @@ impl Sandbox for Tour { ); } - controls = controls.push(Column::new()); + controls = controls.push(Space::with_width(Length::Fill)); if steps.can_continue() { controls = controls.push( |