]> git.proxmox.com Git - pve-installer.git/commitdiff
HD options panel: add seprator before OK button
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 19 Jun 2019 08:09:17 +0000 (10:09 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 19 Jun 2019 08:09:17 +0000 (10:09 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
proxinstall

index 3891338cd8556f24ce25f3b8f9f5faf75aac9696..bad0ea72f02d6cf4d5a194bb7abf34cf7624a2ba 100755 (executable)
@@ -2796,7 +2796,6 @@ sub create_hdoption_view {
     my $hw_raid_note = Gtk3::Label->new("Note: ZFS is not compatible with disks backed by a hardware RAID controller. For details see the reference documentation.");
     $hw_raid_note->set_line_wrap(1);
     $hw_raid_note->set_max_width_chars(30);
-    #$hw_raid_note->set_size_request(150, -1);
     $hw_raid_note->set_visible(0);
     $grid->attach($hw_raid_note, 0, $row++, 2, 1);
 
@@ -2889,6 +2888,10 @@ sub create_hdoption_view {
        &$switch_view();
     });
 
+    my $sep2 = Gtk3::HSeparator->new();
+    $sep2->set_visible(1);
+    $contarea->pack_end($sep2, 1, 1, 10);
+
     $dialog->show();
 
     $dialog->run();