Skip to content

Commit

Permalink
AbstractInstallerView: subclass box
Browse files Browse the repository at this point in the history
  • Loading branch information
danirabbit committed Mar 4, 2024
1 parent 2f07c43 commit 63fe8dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Views/AbstractInstallerView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

public abstract class AbstractInstallerView : Gtk.Grid {
public abstract class AbstractInstallerView : Gtk.Box {
public bool cancellable { get; construct; }

public signal void cancel ();
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 63fe8dc

Please sign in to comment.