Skip to content

Commit

Permalink
Fix extra vertical space usage
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit committed May 14, 2024
1 parent 42ab049 commit 48e8f8c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/Views/PartitioningView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -83,22 +83,18 @@ public class Installer.PartitioningView : AbstractInstallerView {
);

var description_box = new Gtk.Box (VERTICAL, 12) {
margin_top = 12,
margin_end = 12,
margin_bottom = 12,
margin_start = 12
};
description_box.add (format_row);
description_box.add (required_row);
description_box.add (recommended_row);

disk_list = new Gtk.Grid () {
margin_top = 12,
margin_end = 12,
margin_bottom = 12,
margin_start = 12,
row_spacing = 24,
orientation = Gtk.Orientation.VERTICAL,
orientation = VERTICAL,
valign = Gtk.Align.CENTER
};

Expand Down

0 comments on commit 48e8f8c

Please sign in to comment.