Skip to content

Commit

Permalink
Revert "simplify"
Browse files Browse the repository at this point in the history
This reverts commit cad3599.
  • Loading branch information
willmcgugan committed Jun 26, 2024
1 parent cad3599 commit b684848
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/textual/_compositor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b684848

Please sign in to comment.