File tree Expand file tree Collapse file tree 3 files changed +259
-262
lines changed
tests/snapshot_tests/__snapshots__ Expand file tree Collapse file tree 3 files changed +259
-262
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3434
3535- Fixed DataTable row not updating after add https://github.com/Textualize/textual/issues/1026
3636- Fixed issues with animation. Now objects of different types may be animated.
37+ - Fixed containers with transparent background not showing borders https://github.com/Textualize/textual/issues/1175
3738
3839## [ 0.4.0] - 2022-11-08
3940
Original file line number Diff line number Diff line change @@ -633,11 +633,7 @@ def _get_renders(
633633 def is_visible (widget : Widget ) -> bool :
634634 """Return True if the widget is (literally) visible by examining various
635635 properties which affect whether it can be seen or not."""
636- return (
637- widget .visible
638- and not widget .is_transparent
639- and widget .styles .opacity > 0
640- )
636+ return widget .visible and widget .styles .opacity > 0
641637
642638 _Region = Region
643639
You can’t perform that action at this time.
0 commit comments