Merge pull request #158 from VarunBatraIT/master

Fix table horizontal separator bug.
This commit is contained in:
Caleb Bassi 2018-08-16 20:39:05 -07:00
commit e736b1bc24
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ func (table *Table) Buffer() Buffer {
if table.Separator {
border := DefaultTxBuilder.Build(strings.Repeat("─", table.Width-2), table.FgColor, table.BgColor)
for i, cell := range border {
buffer.Set(i+1, pointerY+1, cell)
buffer.Set(table.innerArea.Min.X+i, pointerY+1, cell)
}
}
}