object resizing
BlitzMax Forums/MaxGUI Module/object resizing| 
 | ||
| How can I avoid object being resized and repositioned when the form they're in changes its size? | 
| 
 | ||
| SetGadgetLayout is used to control the behavior of gadget it the parent changes in size | 
| 
 | ||
| I know it, but there's any option to say 'Do not arrange anything' ? I don't see an option like this one | 
| 
 | ||
| Proper usage of SetGadgetLayout does exactly that. try: SetGadgetLayout gadget, 1,0,1,0 | 
| 
 | ||
| Ahm. SetGadgetLayout gadget, 0,0,0,0? 0=every edge is disabled. P.S.: Example code mostly helps solving issues! |