From 63fe8dca8572298c6e6381696df67d9d21141b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Wed, 14 Feb 2024 14:33:55 -0800 Subject: [PATCH] AbstractInstallerView: subclass box --- src/Views/AbstractInstallerView.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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);