Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-tui/src/widgets/table.rs')
| -rw-r--r-- | helix-tui/src/widgets/table.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/helix-tui/src/widgets/table.rs b/helix-tui/src/widgets/table.rs index 57f44883..5f4667b7 100644 --- a/helix-tui/src/widgets/table.rs +++ b/helix-tui/src/widgets/table.rs @@ -37,15 +37,14 @@ pub struct Cell<'a> { impl Cell<'_> { /// Set the `Style` of this cell. pub fn style(mut self, style: Style) -> Self { - self.style = style; - self.content.set_style(style); + self.set_style(style); self } /// Set the `Style` of this cell. pub fn set_style(&mut self, style: Style) { self.style = style; - self.content.set_style(style); + self.content.patch_style(style); } } |