File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010### Fixed
1111
1212- Fixed ` Link ` binding to open the link https://github.com/Textualize/textual/issues/5564
13+ - Fixed issue with clear_panes breaking tabbed content https://github.com/Textualize/textual/pull/5573
1314
1415## [ 2.1.0] - 2025-02-19
1516
Original file line number Diff line number Diff line change @@ -526,7 +526,7 @@ def clear(self) -> AwaitComplete:
526526 underline = self .query_one (Underline )
527527 underline .highlight_start = 0
528528 underline .highlight_end = 0
529- self .call_after_refresh ( self . post_message , self .Cleared (self ))
529+ self .post_message ( self .Cleared (self ))
530530 self .active = ""
531531 return AwaitComplete (self .query ("#tabs-list > Tab" ).remove ())
532532
You can’t perform that action at this time.
0 commit comments