Ben,
I actually had to change line 334 of Container.m to "position = [-10000 -10000 100 100];".
It seems 10/10 width/height was crashing the wiggle axes functions by giving <0 size to the axes contained in my box panels.
Hi Yannick. This is easy enough to do. I'll make sure it's in the next update. If you would like to test it before then, email me using the author link above and I'll send you a patch.
Thanks Ben, I like to remove both borders for a more minimalist look. When I don't need the extra functionality I replace the BoxPanel by a VBox with two elements which allows me to have no borders.
Hi Yannick, thanks for that fix – I'll make sure it's updated in the next version.
There isn't a definitive list of the default properties, I'm afraid. PanelBox will take notice of the default title colour, but that's about all.
Which border was it you wanted to remove, the one around the title, the one around the contents, or both?
I found a line was missing for the background color of the dock buttons in BoxPanel.m :
Adding the following at line 251 fixes it:
if isfield( obj.HGWidgets_, 'DockButton') set( obj.HGWidgets_.DockButton,'BackgroundColor', value );
end
Comment only