Fix style overwriting in table rows with multiple cells (#7281)

pull/16/head
Michael Davis 12 months ago committed by GitHub
parent 27891cdc8d
commit b0129b552d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -450,11 +450,11 @@ impl<'a> Table<'a> {
} else {
col
};
if is_selected {
buf.set_style(table_row_area, self.highlight_style);
}
let mut col = table_row_start_col;
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(
buf,
cell,

Loading…
Cancel
Save