0

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.

dur
  • 15,689
  • 25
  • 79
  • 125
Kurogel
  • 1
  • 2

1 Answers1

1

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.

fabian
  • 80,457
  • 12
  • 86
  • 114
  • Thanks for your comment! I have set the values but when i resize the window to be bigger, there will appear a white space. Is there any way to remove this white space and allow the content to move with the mouse when you try to resize the window? – Kurogel Nov 29 '16 at 13:34