mirror of https://github.com/gizak/termui.git
Fix table horizontal separator bug.
This commit is contained in:
parent
72304ddb9b
commit
96f60f23b6
2
table.go
2
table.go
|
@ -176,7 +176,7 @@ func (table *Table) Buffer() Buffer {
|
||||||
if table.Separator {
|
if table.Separator {
|
||||||
border := DefaultTxBuilder.Build(strings.Repeat("─", table.Width-2), table.FgColor, table.BgColor)
|
border := DefaultTxBuilder.Build(strings.Repeat("─", table.Width-2), table.FgColor, table.BgColor)
|
||||||
for i, cell := range border {
|
for i, cell := range border {
|
||||||
buffer.Set(i+1, pointerY+1, cell)
|
buffer.Set(table.innerArea.Min.X+i, pointerY+1, cell)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue