]> git.proxmox.com Git - pve-installer.git/commitdiff
disk selector: set min height for scroll window, adapt margins
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 10 Dec 2020 17:58:57 +0000 (18:58 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 10 Dec 2020 18:00:57 +0000 (19:00 +0100)
add more inner margin for scroll bar and reduce outer margins to
avoid to much empty border space.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
proxinstall

index 5691dced8ccf1a1e9c9f09b1d5df25a49a610bbe..498409228e5734474c74be035f2da7c49ffb43ee 100755 (executable)
@@ -2870,8 +2870,8 @@ my $create_basic_grid = sub {
     $grid->set_row_spacing(10);
     $grid->set_hexpand(1);
 
-    $grid->set_margin_start(5);
-    $grid->set_margin_end(5);
+    $grid->set_margin_start(10);
+    $grid->set_margin_end(20);
     $grid->set_margin_top(5);
     $grid->set_margin_bottom(5);
 
@@ -2957,6 +2957,7 @@ my $create_raid_disk_grid = sub {
     $scrolled_window->add($diskgrid);
     $scrolled_window->set_policy('never', 'automatic');
     $scrolled_window->set_visible(1);
+    $scrolled_window->set_min_content_height(180);
 
     my $vbox = Gtk3::Box->new('vertical', 0);
     $vbox->pack_start($scrolled_window, 1, 1, 10);
@@ -3061,13 +3062,13 @@ sub create_hdoption_view {
     my $contarea = $dialog->get_content_area();
 
     my $hbox2 =  Gtk3::Box->new('horizontal', 0);
-    $contarea->pack_start($hbox2, 1, 1, 10);
+    $contarea->pack_start($hbox2, 1, 1, 5);
 
     my $grid =  Gtk3::Grid->new();
     $grid->set_column_spacing(10);
     $grid->set_row_spacing(10);
 
-    $hbox2->pack_start($grid, 1, 0, 10);
+    $hbox2->pack_start($grid, 1, 0, 5);
 
     my $row = 0;