Gtk: How do I resize a window programmatically?

In Julia Gtk, how do I resize a window or widget/container programmatically?

Finally found the answer by examining source code in Gtk.jl
You do resize!(win, x, y)
resize! only works on windows, not containers or widgets.

Well, maybe you could help with documenting it them. :wink:

2 Likes