diff --git a/src/Views/AbstractInstallerView.vala b/src/Views/AbstractInstallerView.vala index b58caeab2..4465b6440 100644 --- a/src/Views/AbstractInstallerView.vala +++ b/src/Views/AbstractInstallerView.vala @@ -15,7 +15,7 @@ * along with this program. If not, see . */ -public abstract class AbstractInstallerView : Gtk.Grid { +public abstract class AbstractInstallerView : Gtk.Box { public bool cancellable { get; construct; } public signal void cancel (); @@ -61,8 +61,8 @@ public abstract class AbstractInstallerView : Gtk.Grid { action_area.set_child_secondary (test_label, true); } - orientation = Gtk.Orientation.VERTICAL; - row_spacing = 24; + orientation = VERTICAL; + spacing = 24; margin_top = 12; margin_bottom = 12; add (content_area);