Fix style overwriting in table rows with multiple cells (#7281)
This commit is contained in:
parent
27891cdc8d
commit
b0129b552d
1 changed files with 3 additions and 3 deletions
|
@ -450,11 +450,11 @@ impl<'a> Table<'a> {
|
||||||
} else {
|
} else {
|
||||||
col
|
col
|
||||||
};
|
};
|
||||||
|
if is_selected {
|
||||||
|
buf.set_style(table_row_area, self.highlight_style);
|
||||||
|
}
|
||||||
let mut col = table_row_start_col;
|
let mut col = table_row_start_col;
|
||||||
for (width, cell) in columns_widths.iter().zip(table_row.cells.iter()) {
|
for (width, cell) in columns_widths.iter().zip(table_row.cells.iter()) {
|
||||||
if is_selected {
|
|
||||||
buf.set_style(table_row_area, self.highlight_style);
|
|
||||||
}
|
|
||||||
render_cell(
|
render_cell(
|
||||||
buf,
|
buf,
|
||||||
cell,
|
cell,
|
||||||
|
|
Loading…
Add table
Reference in a new issue