How can I create a border around a box/any widget in gtk?
When I say border I mean the light gray rounded rectangle you see in the image below:

The functions I have attempted/looked for don’t create a border, ie, set_border() creates a inner gap/padding around the widget.
b= gtk.VBox(False, 10)
b.set_border(1)
Use a
gtk.Frame: