Title? what with the Ttile?

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-21 02:11:50 -06:00
parent 57843518b2
commit 50074e543b
1 changed files with 6 additions and 1 deletions

View File

@ -74,7 +74,12 @@ func (w *BasicWindow) Toggle() {
return
}
func (w *BasicWindow) Title(title string) {
func (w *BasicWindow) SetTitle(title string) {
w.SetLabel(title)
return
}
func (w *BasicWindow) SetLabel(title string) {
if !w.Ready() {
return
}