In RC1 my Print My Chords tool is not rendering the GUI properly. The bottom is cut off where it used to auto-resize to the length of a string, put into vb.views. The string contains newlines for each chord so the GUI would extend downwards. Not sure if this is a bug or something that has changed in the API and I need to update my script?
In your case the top level vertical aligner is in the way. It’s not really doing anything because all the content is stacked by the main column already.
Using this as your main layout should do the trick:
local dialog_content = vb:column {
margin = 4,
spacing = 4,
vb:column {
style = "group",
margin = 4,
vb:row {
vb:text {
text = "Key "
},
-- and so on