Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Jun 25, 2024
1 parent 793fcbd commit 268d5db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/textual/widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ def get_component_rich_style(self, *names: str, partial: bool = False) -> Style:
component_styles = self.get_component_styles(*names)
style = component_styles.rich_style
partial_style = component_styles.partial_rich_style
self._rich_style_cache[*names] = (style, partial_style)
self._rich_style_cache[names] = (style, partial_style)

style, partial_style = self._rich_style_cache[names]

Expand Down

0 comments on commit 268d5db

Please sign in to comment.