Bug Fixes

This commit is contained in:
2026-02-02 13:35:13 -06:00
parent 16a92c8f99
commit 5581cf14c1
4 changed files with 35 additions and 45 deletions

View File

@@ -148,9 +148,10 @@ func (w *Form) Draw(screen tcell.Screen) {
func (w *Form) SetStyle(s tcell.Style) { w.style = s }
func (w *Form) Active() bool { return w.active }
func (w *Form) SetActive(a bool) {
func (w *Form) SetActive(a bool) bool {
w.active = a
w.updateWidgets()
return w.active
}
func (w *Form) Visible() bool { return w.visible }
func (w *Form) SetVisible(a bool) { w.visible = a }