diff --git a/src/textual/_compositor.py b/src/textual/_compositor.py index f412824409..e3dd08a50f 100644 --- a/src/textual/_compositor.py +++ b/src/textual/_compositor.py @@ -1048,7 +1048,7 @@ def render_full_update(self) -> LayoutUpdate: self._dirty_regions.clear() crop = screen_region chops = self._render_chops(crop, lambda y: True) - render_strips = [Strip.join(chop.values()).simplify() for chop in chops] + render_strips = [Strip.join(chop.values()) for chop in chops] return LayoutUpdate(render_strips, screen_region) def render_partial_update(self) -> ChopsUpdate | None: