Reputation: 1
The resize checker is checked, and it is greyed out, which means I cannot uncheck it. How do I gain access to uncheck this. Any help would be appreciated.
Upvotes: 0
Views: 855
Reputation: 82491
You can't. Whether a Node
is resizeable or not, i.e. if isResizable
returns true
or false
, is determined by it's type.
This checkbox simply shows this you, but there is no way to set it.
If you want a Node
not to be resized as long as it's possible for the parent, set min width/height and max width/height to the same value.
Upvotes: 1