I have an empty game object that has a UIWidget component and a Box Collider..
If I select auto-resize the box collider won't resize because of line 224 from UIWidget:
public bool isVisible { get { return mIsVisible && mGeom != null && mGeom.hasVertices; } }
If I change to
public bool isVisible { get { return mIsVisible; } }
It will work ok