}
@Override
protected int adjustWidthAnchor(int width, Component comp) {
if (comp instanceof Field) {
Field f = (Field) comp;
int adj = XDOM.isVisibleBox ? padding : (padding / 2);
return width - (f.isHideLabel() ? 0 : (labelAdjust + adj));
}
return super.adjustWidthAnchor(width, comp);
}