List of usage examples for com.badlogic.gdx.scenes.scene2d.ui Cell expand
public Cell<T> expand(boolean x, boolean y)
From source file:com.kotcrab.vis.ui.building.utilities.CellWidget.java
License:Apache License
private void applyFillingData(final Cell<?> cell) { if (alignment != null) { alignment.apply(cell);/* w w w .j av a2s .com*/ } cell.expand(expandX, expandY); cell.fill(fillX, fillY); }