I can’t find how to do that 🙁 there’s gtk_window_set_resizable, but it disables resizing at all and i still want my window to resize horizontally.
Any ideas?
I can’t find how to do that :( there’s gtk_window_set_resizable, but it disables resizing
Share
I believe you can try using gtk_window_set_geometry_hints function and specify max and min height for your window. In this case you would still allow width change whereas height will stay constant. Pls, check if an example below would work for you:
hope this helps, regards