forked from Mirrors/bubbletea
3256fae4d4
v0.13.4 introduced a regression where lines weren't always cleared when resizing the window resulting in the presence of rendering artifacts. This commit fixes that.
12 lines
177 B
Go
12 lines
177 B
Go
package tea
|
|
|
|
// renderer is the interface for Bubble Tea renderers.
|
|
type renderer interface {
|
|
start()
|
|
stop()
|
|
write(string)
|
|
repaint()
|
|
altScreen() bool
|
|
setAltScreen(bool)
|
|
}
|