use of com.kotcrab.vis.ui.widget.VisScrollPane in project HyperLap2D by rednblackgames.
the class UIAnimationsTab method crateScrollPane.
@Override
protected VisScrollPane crateScrollPane() {
animationsTable = new VisTable();
HyperLap2DFacade.getInstance().sendNotification(UIResourcesBoxMediator.ADD_RESOURCES_BOX_TABLE_SELECTION_MANAGEMENT, animationsTable);
VisScrollPane scrollPane = StandardWidgetsFactory.createScrollPane(animationsTable);
scrollPane.setScrollingDisabled(true, false);
return scrollPane;
}
Aggregations