2
0
mirror of https://github.com/rivo/tview.git synced 2024-11-15 06:12:46 +00:00

Merge branch 'master' of github.com:rivo/tview

This commit is contained in:
Oliver 2019-12-31 11:07:00 +01:00
commit c6236f4421

5
box.go
View File

@ -226,6 +226,11 @@ func (b *Box) SetTitle(title string) *Box {
return b
}
// GetTitle returns the box's current title.
func (b *Box) GetTitle() string {
return b.title
}
// SetTitleColor sets the box's title color.
func (b *Box) SetTitleColor(color tcell.Color) *Box {
b.titleColor = color