Added individual cell background colors. Resolves #20

pull/40/head
Oliver 7 years ago
parent b423641ec2
commit 213f13fcc4

@ -628,12 +628,14 @@ ColumnLoop:
continue continue
} }
// Determine colors. // Determine cell colors.
bgColor := t.backgroundColor bgColor := t.backgroundColor
textColor := cell.Color textColor := cell.Color
if cell.BackgroundColor != tcell.ColorDefault {
bgColor = cell.BackgroundColor
}
if cellSelected && !cell.NotSelectable { if cellSelected && !cell.NotSelectable {
bgColor = cell.Color textColor, bgColor = bgColor, textColor
textColor = t.backgroundColor
} }
// Draw cell background. // Draw cell background.
@ -647,6 +649,18 @@ ColumnLoop:
} }
cell.x, cell.y, cell.width = x+columnX+1, y+rowY, finalWidth cell.x, cell.y, cell.width = x+columnX+1, y+rowY, finalWidth
// We may want continuous background colors in rows so change
// border/separator background colors, too.
if column > 0 {
leftCell := getCell(row, column-1)
if leftCell != nil {
if cell.BackgroundColor == leftCell.BackgroundColor {
ch, _, style, _ := screen.GetContent(x+columnX, y+rowY)
screen.SetContent(x+columnX, y+rowY, ch, nil, style.Background(bgColor))
}
}
}
// Draw text. // Draw text.
text := cell.Text text := cell.Text
textWidth := runewidth.StringWidth(text) textWidth := runewidth.StringWidth(text)

Loading…
Cancel
Save