From faac89fd8da06e4c3f6568f00ac20dd0c4fa1ffa Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Tue, 24 Jan 2023 07:47:18 +0000 Subject: [PATCH] Remove mention of `ChildrenUpdated` from the `ListView` docs As pointed out in #1649, a `ChildrenUpdated` message is documented but it doesn't exist in the code. It looks like it got added during development, then removed after it was realised it wasn't needed, but presumably it got left in the docs: https://github.com/Textualize/textual/pull/1143#discussion_r1030409026 --- docs/widgets/list_view.md | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/docs/widgets/list_view.md b/docs/widgets/list_view.md index ff6b6b6eb..fe7a8c563 100644 --- a/docs/widgets/list_view.md +++ b/docs/widgets/list_view.md @@ -64,21 +64,6 @@ or by clicking on it. | `item` | `ListItem` | The item that was selected. | -### ChildrenUpdated - -The `ListView.ChildrenUpdated` message is emitted when the elements in the `ListView` -are changed (e.g. a child is added, or the list is cleared). - -- [x] Bubbles - -#### Attributes - -| attribute | type | purpose | -| ---------- | ---------------- | ------------------------- | -| `children` | `list[ListItem]` | The new ListView children | - - - ## See Also * [ListView](../api/list_view.md) code reference