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/).
10
10
### Fixed
11
11
12
12
- 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
13
14
14
15
## [ 2.1.0] - 2025-02-19
15
16
Original file line number Diff line number Diff line change @@ -526,7 +526,7 @@ def clear(self) -> AwaitComplete:
526
526
underline = self .query_one (Underline )
527
527
underline .highlight_start = 0
528
528
underline .highlight_end = 0
529
- self .call_after_refresh ( self . post_message , self .Cleared (self ))
529
+ self .post_message ( self .Cleared (self ))
530
530
self .active = ""
531
531
return AwaitComplete (self .query ("#tabs-list > Tab" ).remove ())
532
532
You can’t perform that action at this time.
0 commit comments