From: Maximiliano Sandoval Date: Tue, 21 Nov 2023 15:10:23 +0000 (+0100) Subject: gui: change margins in create_basic_grid X-Git-Url: https://git.proxmox.com/?p=pve-installer.git;a=commitdiff_plain;h=0cc6d5ff4fa79cfb4bb60a72bbbeec905d6a38c1 gui: change margins in create_basic_grid Previously the grids were inserted in a succession of boxes each with its own set of margins and spacing. We define the margins now exclusively in the grid and account for previous values. Note that we match the top and bottom margins of the 'Target Harddisk' panel which does not need to use a grid. Signed-off-by: Maximiliano Sandoval Reviewed-by: Christoph Heiss Tested-by: Christoph Heiss Tested-by: Tested-by: Lukas Wagner --- diff --git a/proxinstall b/proxinstall index 55d4475..1796185 100755 --- a/proxinstall +++ b/proxinstall @@ -332,10 +332,10 @@ my $create_basic_grid = sub { $grid->set_row_spacing(10); $grid->set_hexpand(1); - $grid->set_margin_start(10); + $grid->set_margin_start(20); $grid->set_margin_end(20); - $grid->set_margin_top(5); - $grid->set_margin_bottom(5); + $grid->set_margin_top(10); + $grid->set_margin_bottom(10); return $grid; };