Merge Pull 46
This commit is contained in:
commit
656a220fd9
8
block.go
8
block.go
@ -92,8 +92,12 @@ func (d *Block) Buffer() []Point {
|
||||
for i := 0; i < d.innerWidth; i++ {
|
||||
for j := 0; j < d.innerHeight; j++ {
|
||||
p := Point{}
|
||||
p.X = d.X + 1 + i
|
||||
p.Y = d.Y + 1 + j
|
||||
p.X = d.X + i
|
||||
p.Y = d.Y + j
|
||||
if d.HasBorder {
|
||||
p.X++
|
||||
p.Y++
|
||||
}
|
||||
p.Ch = ' '
|
||||
p.Bg = d.BgColor
|
||||
ps = append(ps, p)
|
||||
|
20
p_test.go
Normal file
20
p_test.go
Normal file
@ -0,0 +1,20 @@
|
||||
package termui
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestPar_NoBorderBackground(t *testing.T) {
|
||||
par := NewPar("a")
|
||||
par.HasBorder = false
|
||||
par.BgColor = ColorBlue
|
||||
par.TextBgColor = ColorBlue
|
||||
par.Width = 2
|
||||
par.Height = 2
|
||||
|
||||
pts := par.Buffer()
|
||||
for _, p := range pts {
|
||||
t.Log(p)
|
||||
if p.Bg != par.BgColor {
|
||||
t.Errorf("expected color to be %v but got %v", par.BgColor, p.Bg)
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user