diff --git a/src/pages/confirmation.rs b/src/pages/confirmation.rs index 0a09d9c..3054b81 100644 --- a/src/pages/confirmation.rs +++ b/src/pages/confirmation.rs @@ -16,12 +16,13 @@ page!(Confirmation: }, } => { StartInstallation } - gtk::Box { + gtk::CenterBox { set_orientation: gtk::Orientation::Horizontal, set_valign: gtk::Align::Center, - set_spacing: 16, + set_vexpand: true, - gtk::Box { + #[wrap(Some)] + set_start_widget = >k::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 2, set_vexpand: true, @@ -46,13 +47,15 @@ page!(Confirmation: } }, - gtk::Image { + #[wrap(Some)] + set_center_widget = >k::Image { set_icon_name: Some("go-next-symbolic"), - inline_css: "-gtk-icon-size: 64px" + inline_css: "-gtk-icon-size: 64px", + set_margin_horizontal: 16, }, - - gtk::Box { + #[wrap(Some)] + set_end_widget = >k::Box { set_orientation: gtk::Orientation::Vertical, set_spacing: 2, set_vexpand: true,