Currently the gap in the widget container is set using the code
var vLayout:VerticalLayout = new VerticalLayout;
vLayout.horizontalAlign = "right";
vLayout.paddingBottom = 10;
vLayout.paddingRight = 25;
vLayout.paddingTop = 10;
vLayout.gap = 8;
widgetContainer.layout = vLayout;
isDraggable = false;
isResizeable = false;
which works fine, but when i try to reduce this gap
vLayout.gap = 2;
the widgets start to overlap on minimize. Is there any way to reduce the gap and prevent the overlap from happening.Thanks