diff --git a/author_module.go b/author_module.go index 6e0e205..3dbca6d 100644 --- a/author_module.go +++ b/author_module.go @@ -1321,7 +1321,9 @@ func buildAuthorMenuTab(state *appState) fyne.CanvasObject { updateLogoPreview() updateMenuControls(state.authorCreateMenu) - return container.NewPadded(controls) + scroll := container.NewVScroll(container.NewPadded(controls)) + scroll.SetMinSize(fyne.NewSize(0, 420)) + return scroll } func buildAuthorDiscTab(state *appState) fyne.CanvasObject {