Control min resize of window?

Hello everybody! I am completely new to the JUCE framework and I am loving it… I would love to control the minimum size a window can be resized, I know I can do that using setResizeLimits() and I have to pass the minimum and max sizes allowed, but what if I want to control only the minimum size it can be resized and allow any max sizes?

Am I understanding this wrong?

Thanks a lot for any comment or help about this!

How about passing INT_MAX? An int can’t be larger than that anyway, so that should work.

1 Like