From 64ac4345a8a42b7667ed5ca1f603984b085e42cb Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Wed, 25 Jan 2023 20:47:05 +0000 Subject: [PATCH] Update the CHANGELOG to reflect the method-only approach --- CHANGELOG.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 855d48d88..8efab77b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,15 +9,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added -- Added an optional `expand_all` parameter to `TreeNode.expand` https://github.com/Textualize/textual/issues/1430 -- Added an optional `collapse_all` parameter to `TreeNode.collapse` https://github.com/Textualize/textual/issues/1430 -- Added an optional `toggle_all` parameter to `TreeNode.toggle` https://github.com/Textualize/textual/issues/1430 +- Added optional `TreeNode.expand_all` https://github.com/Textualize/textual/issues/1430 +- Added optional `TreeNode.collapse_all` https://github.com/Textualize/textual/issues/1430 +- Added optional `TreeNode.toggle_all` https://github.com/Textualize/textual/issues/1430 ### Changed - Breaking change: `TreeNode` can no longer be imported from `textual.widgets`; it is now available via `from textual.widgets.tree import TreeNode`. https://github.com/Textualize/textual/pull/1637 - ### Fixed - Fixed stuck screen https://github.com/Textualize/textual/issues/1632