use of limelight.ui.model.PanelBase in project limelight by slagyr.
the class InputPanelLayout method doExpansion.
@Override
public void doExpansion(Panel thePanel) {
PanelBase panel = (PanelBase) thePanel;
Box bounds = panel.getParent().getChildConsumableBounds();
panel.setLocation(bounds.x, bounds.y);
panel.setSize(bounds.width, bounds.height);
}