Several Fixes

This commit is contained in:
2025-08-27 07:42:24 -05:00
parent e4405a8d6b
commit 4361d7b5cf
6 changed files with 45 additions and 24 deletions

View File

@@ -101,7 +101,9 @@ func (w *TopMenuLayout) HandleKey(ev *tcell.EventKey) bool {
// If we're here, that means the menu isn't active, but we are. So the
// widget should be.
w.widget.SetActive(true)
return w.widget.HandleKey(ev)
ret := w.widget.HandleKey(ev)
w.widget.SetActive(true)
return ret
}
return false
}