diff options
author | Aylur <[email protected]> | 2024-09-11 22:39:15 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-11 22:39:15 +0000 |
commit | d203255ec20bb6e3b2917dd4aee53dee3a090137 (patch) | |
tree | 40d8211a238629a99d3588c0d06215d53135fc3d /docs/ags/first-widgets.md | |
parent | 137345755c1c02d4766f1788198096013df9080c (diff) |
add: stack widget
Diffstat (limited to 'docs/ags/first-widgets.md')
-rw-r--r-- | docs/ags/first-widgets.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ags/first-widgets.md b/docs/ags/first-widgets.md index f098586..1b18109 100644 --- a/docs/ags/first-widgets.md +++ b/docs/ags/first-widgets.md @@ -350,7 +350,7 @@ return <box> ``` :::warning -Only bind children of the `box` widget. Gtk does not cleanup widgets by default, +Only bind children of the `box` or the `stack` widget. Gtk does not cleanup widgets by default, they have to be explicitly destroyed. The box widget is a special container that will implicitly call `.destroy()` on its removed child widgets. You can disable this behavior by setting the `noImplicityDestroy` property. |