Working some things out

This commit is contained in:
2025-08-14 14:21:19 -05:00
parent a74cf9fe61
commit acfe8be93d
9 changed files with 193 additions and 104 deletions

View File

@@ -48,7 +48,7 @@ type TopMenuLayout struct {
var _ Widget = (*TopMenuLayout)(nil)
func NewTopMenuLayout(id string, s tcell.Style) *TopMenuLayout {
ret := &TopMenuLayout{}
ret := &TopMenuLayout{widget: NewBlankWidget(id)}
ret.Init(id, s)
return ret
}