diff options
| author | Jeff Carr <[email protected]> | 2025-03-25 19:49:56 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-25 19:49:56 -0500 | 
| commit | d72602be948fcdd8ed9ab45dcdc3e4eb177ece37 (patch) | |
| tree | 8c8df904f78b04e6392eeaf1b0aa861a6c44f018 | |
| parent | 9ad2d8247f5641d5da3012e572ba430467a6fa41 (diff) | |
Bottom() box should be verticalv0.22.26
| -rw-r--r-- | genericWindow.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/genericWindow.go b/genericWindow.go index ce5fef8..cdf4f91 100644 --- a/genericWindow.go +++ b/genericWindow.go @@ -100,7 +100,7 @@ func NewGenericWindow(title string, grouptxt string) *GenericWindow {  	gw.Top = gw.Stack.NewVerticalBox("Top")  	gw.Middle = gw.Stack.Box().SetProgName("Middle") -	gw.Bottom = gw.Stack.Box().SetProgName("Bottom") +	gw.Bottom = gw.Stack.NewVerticalBox("Bottom")  	gw.Group = gw.Top.NewGroup(grouptxt)  | 
