alert window border style fix
This commit is contained in:
parent
1affe37594
commit
6a96983615
|
@ -44,7 +44,7 @@ func RenderAlert(alert *data.Alert, area image.Rectangle, buffer *ui.Buffer) {
|
||||||
|
|
||||||
block := *ui.NewBlock()
|
block := *ui.NewBlock()
|
||||||
block.SetRect(getRectCoordinates(area, width, len(lines)))
|
block.SetRect(getRectCoordinates(area, width, len(lines)))
|
||||||
block.BorderStyle = ui.Style{Fg: color}
|
block.BorderStyle = ui.Style{Fg: color, Bg: ui.ColorClear}
|
||||||
block.Draw(buffer)
|
block.Draw(buffer)
|
||||||
|
|
||||||
buffer.Fill(ui.NewCell(' ', ui.NewStyle(console.ColorBlack)), block.Inner)
|
buffer.Fill(ui.NewCell(' ', ui.NewStyle(console.ColorBlack)), block.Inner)
|
||||||
|
|
Loading…
Reference in New Issue