diff options
author | Aylur <[email protected]> | 2024-06-25 22:45:59 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-06-25 22:45:59 +0200 |
commit | 90608afe4a29d628370ee8e4c8986a5be2ce9445 (patch) | |
tree | 7ac175cff034defbaf8412bc5b3c7e2d2d1e8585 /src | |
parent | 757dbd9b6569997f9a8a8ce69629f69b0df1c8fd (diff) |
box implicit destroy default to true
this is the current behavior on ags
Diffstat (limited to 'src')
-rw-r--r-- | src/widget/box.vala | 3 |
1 files changed, 1 insertions, 2 deletions
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<weak Gtk.Widget> children { set { _set_children(value); } |