From 90608afe4a29d628370ee8e4c8986a5be2ce9445 Mon Sep 17 00:00:00 2001 From: Aylur Date: Tue, 25 Jun 2024 22:45:59 +0200 Subject: box implicit destroy default to true this is the current behavior on ags --- src/widget/box.vala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src') diff --git a/src/widget/box.vala b/src/widget/box.vala index b4f0e82..39dee92 100644 --- a/src/widget/box.vala +++ b/src/widget/box.vala @@ -8,9 +8,8 @@ public class Box : Gtk.Box { /** * wether to implicity destroy previous children when setting them - * TODO: should it be opt out? */ - public bool implicit_destroy { get; set; default = false; } + public bool implicit_destroy { get; set; default = true; } public List children { set { _set_children(value); } -- cgit v1.2.3