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

pull/16/head
Michael Davis 1 year 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 { } else {
col col
}; };
let mut col = table_row_start_col;
for (width, cell) in columns_widths.iter().zip(table_row.cells.iter()) {
if is_selected { if is_selected {
buf.set_style(table_row_area, self.highlight_style); 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()) {
render_cell( render_cell(
buf, buf,
cell, cell,

Loading…
Cancel
Save