List of usage examples for com.badlogic.gdx.scenes.scene2d.ui Cell minHeight
public Cell<T> minHeight(float minHeight)
From source file:com.kotcrab.vis.ui.building.utilities.CellWidget.java
License:Apache License
private void applySizeData(final Cell<?> cell) { if (width > IGNORED_SIZE) { cell.width(width);// ww w . ja va2s. c om } if (height > IGNORED_SIZE) { cell.height(height); } if (minWidth > IGNORED_SIZE) { cell.minWidth(minWidth); } if (minHeight > IGNORED_SIZE) { cell.minHeight(minHeight); } }