It seems the slider is too short.
Horizontal one can be used by this sample code in the doc (Layout · Gtk.jl) and it works well.
Is there a way to put a vertical slider which has enough length into a grid?
I think you put the scale in the upper left corner of your grid, so it cannot expand lower than the lower edge of button1. Try packing the buttons in a VBox and scale and VBox together in a HBox. btw: for experimenting with layout options use glade.
I got the same result by using Vboxes in a Hbox, but it worked well with Glade! I’m not sure why it worked, but it’s probably some property issues
Thank you!