Hey,
is there a sane way to assert a certain minimum height of a widget?
I saw that there is a minHeight value in the widget class, though it has nor setter
and we don't want to edit the NGUI sources.
What I want to achieve:
A textbox like this which dynamically enlarges the window...

... but...
If it's just one line of text I don't want everything to collapse to one
line (using Overflow: ResizeHeight) as it looks weird....

... instead I'd like a minimum height to be preserved.

At the moment the window borders are anchored to the text label.
Already thought about some dummy padding widget which would adapt its
height to a needed value by constantly measuring the height of the text
field but.... *blearch* ... this would be a dead ugly solution.